/* Member Dashboard Styles */
.book-instrument-member-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Navigation Tabs */
.dashboard-nav {
    margin: 20px 0;
    border-bottom: 1px solid #ccd0d4;
}

.nav-tab {
    background: #f1f1f1;
    border: 1px solid #ccd0d4;
    border-bottom: none;
    margin-right: 5px;
    padding: 8px 15px;
    text-decoration: none;
    color: #2271b1;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
}

.nav-tab-active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    color: #1d2327;
}

/* Dashboard Content */
.dashboard-content {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

/* Tables */
.bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.bookings-table th,
.bookings-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e4e7;
}

.bookings-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.status-pending {
    background-color: #f0c14b;
    color: #111;
}

.status-approved {
    background-color: #46b450;
    color: #fff;
}

.status-rejected {
    background-color: #dc3232;
    color: #fff;
}

.status-cancelled {
    background-color: #a7aaad;
    color: #fff;
}

/* Buttons */
.button {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    background: #f6f7f7;
    border-color: #2271b1;
    color: #2271b1;
    vertical-align: top;
}

.button:hover {
    background: #f0f0f1;
    border-color: #0a4b78;
    color: #0a4b78;
}

.button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Elements */
.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Responsive Table */
@media screen and (max-width: 782px) {
    .bookings-table th,
    .bookings-table td {
        padding: 8px 10px;
    }
    
    .button {
        padding: 0 8px;
        line-height: 2;
    }
}

/* Loading State */
.loading {
    display: inline-block;
    margin-left: 10px;
    color: #646970;
    font-style: italic;
}
