/* Dashboard Page Specific Styles – no footer */

.dashboard-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.dashboard-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 16px 0;
}

.dashboard-intro {
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
    padding: 0;
    margin: 0 0 40px 0;
}

.dashboard-block {
    padding: 24px;
    margin: 0;
    border: 1px solid #c6c6c6;
    border-radius: 10px;
}

.dashboard-subheading {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 12px 0;
}

.dashboard-table-wrap {
    margin-top: 16px;
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
}

.dashboard-table th,
.dashboard-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}

.dashboard-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard-table-empty td {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.dashboard-table tbody tr:not(.dashboard-table-empty):hover td {
    background-color: rgba(255, 255, 255, 0.04);
}

/* Dashboard black section – same mobile spacing as other pages */
@media (max-width: 992px) {
    .black-section.dashboard-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .black-section.dashboard-section {
        padding-top: 60px;
        padding-bottom: 60px;
        margin-top: 25px;
    }

    .dashboard-heading {
        font-size: 50px;
        margin-bottom: 12px;
    }

    .dashboard-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .dashboard-block {
        padding: 20px;
    }

    .dashboard-subheading {
        font-size: 24px;
    }
}

@media (max-width: 479px) {
    .dashboard-heading {
        font-size: 40px;
    }

    .dashboard-subheading {
        font-size: 22px;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .dashboard-table th {
        font-size: 16px;
    }
}
