/* Booking Management Styles */

.booking-management-wrapper {
    padding: 0;
}

.booking-management-container {
    padding: 0;
}

.booking-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

.date-range-picker {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.date-range-picker i {
    color: var(--riden-red);
}



/* Table Section */
.booking-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    box-shadow: var(--riden-shadow);
}

.booking-table thead th {
    background: #fff5f6 !important;
    border: none;
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 800;
    color: #000;
    text-transform: none;
}

.booking-table tbody td {
    padding: 18px 25px;
    vertical-align: middle;
    border-bottom: 1px solid #f8f8f8;
    font-size: 14px;
}

.booking-id {
    font-weight: 800;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
}

.status-completed {
    background: #e1f7ef;
    color: #10b981;
}

.status-cancelled {
    background: #ffebeb;
    color: #ff5c5c;
}

/* Pagination */
.booking-pagination {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px 25px;
}

.pg-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}

.pg-link.active {
    background: #fff !important;
    border: 1.5px solid var(--riden-red) !important;
    color: var(--riden-red) !important;
}

.pg-link.nav-btn {
    background: var(--riden-red) !important;
    border-color: var(--riden-red) !important;
    color: #fff !important;
}

.pg-dots {
    color: #999;
}