/* Dashboard layout */

html { scroll-behavior: smooth; }

.dash {
    padding: 8px 0 40px;
}
.dash-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1.6fr);
    grid-template-rows: auto 1fr;
    gap: 20px;
    align-items: flex-start;
}

/* Sidebar */
.dash-sidebar {
    position: relative;
    border-radius: 18px;
    background:
        linear-gradient(to right, rgba(229, 231, 235, 0.6) 1px, transparent 1px) 0 0 / 16px 16px,
        linear-gradient(to bottom, rgba(229, 231, 235, 0.6) 1px, transparent 1px) 0 0 / 16px 16px,
        #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
}
.dash-user-header {
    /* display: flex; */
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
}
.dash-user-meta {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-user-id {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}
.dash-avatar {
    width: 52px;
    height: 52px;
}
#logoutLink
{
    color: #d63939 !important;
}
.dash-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px #42424254 solid;
}
.dash-user-name {
    font-weight: 600;
    color: #111827;
}
.dash-user-email {
    font-size: 13px;
    color: #6b7280;
}
.dash-nav {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
    padding: 14px 16px;
    border-top: 1px #e9e9e9 solid;
background: #ffffff;
}
.dash-nav a {
    text-decoration: none;
    color: #4b5563;
    padding: 4px 3px;
    border-radius: 8px;
}
.dash-nav a.is-active {
    color: #111827;
    font-weight: 600;
}
.dash-nav a:hover {
    font-weight: 600;
}
.dash-logout {
    margin-top: auto;
    font-size: 13px;
}
.dash-logout a {
    color: #ef4444;
    text-decoration: none;
}

/* Recommended assets — separate block below profile */
.dash-reco-block {
    grid-column: 1;
    grid-row: 2;
    border-radius: 18px;
    background: #ffffff;
    /* background:
        linear-gradient(to right, rgba(229, 231, 235, 0.7) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(to bottom, rgba(229, 231, 235, 0.7) 1px, transparent 1px) 0 0 / 22px 22px,
        #ffffff; */
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-reco-block-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.dash-reco-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-reco-mini {
    border-radius: 14px;
    padding: 12px 12px 14px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
.dash-reco-try-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 60%, #fb923c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}
.dash-reco-try-btn:hover {
    opacity: 0.96;
}
.dash-reco-mini-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}
.dash-reco-mini-symbol {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}
.dash-reco-mini-return {
    font-size: 14px;
    font-weight: 700;
    color: #16a34a;
}
.dash-reco-mini-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.dash-reco-mini-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.35;
}

/* Main column */
.dash-main {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.dash-main-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 18px;
}
.dash-card {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(229, 231, 235, 0.9);
    padding: 18px 20px;
}
.dash-flash-card {
    padding: 12px 16px;
}
.dash-flash {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
}
.dash-flash + .dash-flash {
    margin-top: 8px;
}
.dash-flash-success {
    color: #166534;
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
}
.dash-flash-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.dash-balance-title {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 6px;
}
.dash-currency-buttons-container
{
    display: inline-flex;
    gap: 8px;
}
.col-currency-label
{
    align-self: center;
}
.dash-member-asset-title-graphic-image
{
    display: block;
    position: relative;
    top: 3%;
    left: -3%;
    width: 110%;
}
.dash-member-asset-tile-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.dash-member-asset-tile-image
{
    height: 250px;
    overflow: hidden;
    background: linear-gradient(to right, rgba(229, 231, 235, 0.35) 1px, transparent 1px) 0 0 / 14px 14px,
linear-gradient(to bottom, rgba(229, 231, 235, 0.35) 1px, transparent 1px) 0 0 / 14px 14px,
/* linear-gradient(35deg, rgb(244, 255, 255) 0%, rgba(255, 255, 255, 1) 56%, rgba(255, 255, 255, 1) 100%), */
#ffffff;
    /* background:
        radial-gradient(circle at 20% 0%, rgba(239, 246, 255, 1), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(254, 242, 242, 1), transparent 55%),
        linear-gradient(135deg, #0f172a, #1f2937); */
}
.dash-withdraw-btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #22c574;
    border: 1px #22c55e solid;
    background: #ffffff00;
    /* box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35); */
}
.dash-balance-value {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    
}
.dash-currency-label
{
    align-self: center;
}
.dash-currency-value
{
    align-self: center;
}
.custom-dash-balance-usdt-container
{
    width: 100%;
}
.dash-balance-meta {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
    padding-bottom: 12px;   
    border-bottom: 1px #ebebeb solid;
}
.dash-balance-change {
    font-weight: 600;
    color: #16a34a;
}
.dash-balance-change.is-negative {
    color: #b91c1c;
}
.dash-balance-extra {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}
.dash-balance-usdt {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dash-balance-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}
.dash-balance-row-label {
    font-size: 12px;
    color: #6b7280;
}
.dash-balance-row-value {
    white-space: nowrap;
}
.dash-modal-form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dash-modal-label {
    font-size: 12px;
    color: #4b5563;
}
.dash-modal-input {
    width: 100%;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}
.dash-modal-input:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.dash-modal-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 60%, #22c55e 100%);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}
.dash-modal-primary:hover {
    opacity: 0.96;
}
.dash-modal-copy.is-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}
.dash-topup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #0ea5e9 0%, #22c55e 60%, #22c55e 100%);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}
.dash-topup-btn:hover {
    opacity: 0.96;
}

.dash-current-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.dash-current-symbol {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 6px;
}
.dash-current-body {
    font-size: 13px;
    color: #6b7280;
}
.dash-current-stats {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.dash-current-stats span {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 2px;
}
.dash-current-stats strong {
    display: block;
    font-size: 13px;
    color: #111827;
    font-weight: 600;
}

.dash-portfolio-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}
.dash-portfolio-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.dash-portfolio-table th,
.dash-portfolio-table td {
    padding: 8px 6px;
    text-align: left;
}
.dash-portfolio-table th {
    font-weight: 500;
    color: #6b7280;
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}
.dash-portfolio-table tr + tr td {
    border-top: 1px solid rgba(243, 244, 246, 0.9);
}
.dash-portfolio-table tbody tr:hover {
    background: rgba(243, 244, 246, 0.45);
}
.dash-row-selected {
    background: rgba(249, 115, 22, 0.08);
}
.dash-actions-cell {
    text-align: right;
    white-space: nowrap;
}
.dash-details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: rgba(239, 246, 255, 0.75);
}
.dash-details-link:hover {
    background: rgba(239, 246, 255, 1);
    border-color: rgba(37, 99, 235, 0.4);
}
.dash-pill {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #ecfdf3;
    color: #16a34a;
}

/* Empty state + CTA */
.dash-empty {
    padding: 10px 0 4px;
}
.dash-empty-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.dash-empty-body {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 12px;
}
.dash-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background: #2563eb;
    /* box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25); */
}
.dash-buy-btn:hover {
    opacity: 0.96;
}

/* Market tiles */
.dash-market {
    scroll-margin-top: 90px;
}
.dash-market-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.dash-market-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.dash-market-subtitle {
    font-size: 12px;
    color: #9ca3af;
}
.dash-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.dash-tile {
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    background:
        linear-gradient(to right, rgba(229, 231, 235, 0.25) 1px, transparent 1px) 0 0 / 14px 14px,
        linear-gradient(to bottom, rgba(229, 231, 235, 0.25) 1px, transparent 1px) 0 0 / 14px 14px,
        #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 14px 14px 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dash-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06), 0 18px 60px rgba(249, 115, 22, 0.08);
}
.dash-tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.dash-tile-symbol {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #6b7280;
}
.dash-tile-buy {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: #2563eb;
}
.dash-tile-buy:hover {
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(37, 99, 235, 0.3);
}
.dash-tile-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}
.dash-tile-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.35;
}

/* USDT modal */
.dash-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 16px;
}
.dash-modal-backdrop.is-visible {
    display: flex;
}
.dash-modal {
    max-width: 380px;
    width: 100%;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
    padding: 20px 22px 18px;
    position: relative;
}
.dash-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}
.dash-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.dash-modal-text {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 8px;
}
.dash-feedback-error {
    color: #991b1b;
    font-weight: 600;
}
.dash-feedback-success {
    color: #166534;
    font-weight: 600;
}
.dash-modal-address {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #111827;
    word-break: break-all;
    margin-bottom: 12px;
}
.dash-modal-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.dash-modal-qr img { display: block; }
.dash-modal-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #2563eb 60%);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
    margin-bottom: 8px;
}
.dash-modal-copy:hover {
    opacity: 0.96;
}
.dash-modal-copy.is-copied {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 60%);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
}
.dash-modal-hint {
    font-size: 11px;
    color: #6b7280;
}
.dash-buy-preview {
    margin-top: 10px;
    border-top: 1px solid rgba(229, 231, 235, 1);
    padding-top: 10px;
}
.dash-buy-preview-line {
    font-size: 12px;
    color: #4b5563;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}
.dash-buy-preview-line strong {
    color: #111827;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1120px) {
    .dash-layout { grid-template-columns: 260px 1fr; }
    .dash-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .dash-layout {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .dash-sidebar {
        order: 1;
    }
    .dash-main {
        order: 2;
        grid-column: auto;
        grid-row: auto;
    }
    .dash-reco-block {
        order: 3;
        grid-column: auto;
        grid-row: auto;
    }
    .dash-main-top {
        grid-template-columns: 1fr;
    }
    .dash-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .dash {
        padding: 4px 0 28px;
    }
    .dash-card {
        padding: 14px 16px;
        border-radius: 16px;
    }
    .dash-user-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px 10px;
    }
    .dash-avatar {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    .dash-user-meta {
        min-width: 0;
    }
    .dash-user-name {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .dash-user-email {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .dash-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        margin-top: 0;
        padding: 10px 14px 12px;
        scrollbar-width: none;
    }
    .dash-nav::-webkit-scrollbar {
        display: none;
    }
    .dash-nav a {
        white-space: nowrap;
        padding: 7px 12px;
        border-radius: 999px;
        background: #f3f4f6;
        font-size: 13px;
    }
    .dash-nav a.is-active {
        background: #111827;
        color: #ffffff;
    }
    #logoutLink.is-active {
        background: #fef2f2 !important;
        color: #d63939 !important;
    }
    .dash-balance-value {
        font-size: 22px;
    }
    .dash-balance-meta {
        font-size: 11px;
        line-height: 1.45;
    }
    .custom-dash-balance-usdt-container .row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .dash-balance-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dash-currency-buttons-container {
        width: 100%;
        display: flex;
        gap: 8px;
    }
    .dash-currency-buttons-container .dash-topup-btn,
    .dash-currency-buttons-container .dash-withdraw-btn {
        flex: 1;
        min-height: 36px;
    }
    .dash-current-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .dash-current-stats > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        padding: 8px 10px;
        border-radius: 10px;
        background: #f9fafb;
    }
    .dash-current-stats span {
        margin-bottom: 0;
    }
    .dash-current-stats strong {
        text-align: right;
    }
    .dash-market-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .dash-market {
        scroll-margin-top: 72px;
    }
    .dash-reco-block {
        padding: 16px 14px;
    }
    .dash-reco-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin: 0 -2px;
        padding-bottom: 2px;
        scrollbar-width: none;
    }
    .dash-reco-list::-webkit-scrollbar {
        display: none;
    }
    .dash-reco-mini {
        min-width: 220px;
        flex: 0 0 220px;
    }
    .dash-modal-backdrop.is-visible {
        align-items: flex-end;
    }
    .dash-modal-backdrop.is-visible .dash-modal {
        width: 100%;
        max-height: 90vh;
        padding: 18px 16px 24px;
        border-radius: 16px 16px 0 0;
        overflow-y: auto;
    }
    .dash-modal-backdrop {
        padding: 0;
    }
    .dash-nav #logoutLink {
        background: #fef2f2;
        color: #d63939 !important;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 640px) {
    .dash-portfolio-table--responsive thead {
        display: none;
    }
    .dash-portfolio-table--responsive tbody tr {
        display: block;
        border: 1px solid rgba(229, 231, 235, 0.95);
        border-radius: 14px;
        padding: 10px 12px;
        margin-bottom: 10px;
        background: #ffffff;
    }
    .dash-portfolio-table--responsive tbody tr:hover {
        background: #ffffff;
    }
    .dash-portfolio-table--responsive tbody tr.dash-row-selected {
        border-color: rgba(249, 115, 22, 0.45);
        background: rgba(249, 115, 22, 0.05);
    }
    .dash-portfolio-table--responsive tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 6px 0;
        border: none;
        text-align: right;
    }
    .dash-portfolio-table--responsive tbody tr + tr td {
        border-top: none;
    }
    .dash-portfolio-table--responsive tbody td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #6b7280;
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    .dash-portfolio-table--responsive tbody td.dash-actions-cell {
        justify-content: stretch;
        padding-top: 10px;
        margin-top: 4px;
        border-top: 1px solid rgba(243, 244, 246, 0.95);
    }
    .dash-portfolio-table--responsive tbody td.dash-actions-cell::before {
        display: none;
    }
    .dash-portfolio-table--responsive .dash-details-link {
        width: 100%;
    }
    .dash-member-asset-tile-image {
        height: 200px;
    }
    .asset-tile-actions {
        flex-direction: column;
    }
    .asset-tile-actions .asset-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .dash-tiles { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .dash-balance-value {
        font-size: 20px;
        word-break: break-word;
    }
    .dash-reco-mini {
        min-width: 200px;
        flex-basis: 200px;
    }
}

