.bookings-section {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bookings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 50px;
}

.bookings-header h2 {
    color: #333;
    font-size: 20px;
}

.filters-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
}

.status-filter {
    min-width: 150px;
}

.status-filter select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.bookings-table th {
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 2px solid #e0e0e0;
}

.bookings-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.bookings-table tr:hover {
    background: #f8f9fa;
    cursor: pointer;
}

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

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.paid {
    background: #cce5ff;
    color: #004085;
}

.status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button.active {
    background: #0066CC;
    color: white;
    border-color: #0066CC;
}

.pagination button:hover:not(.active) {
    background: #f0f0f0;
}

.bulk-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.bulk-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.btn-confirm {
    background: #28a745;
    color: white;
}

.btn-cancel {
    background: #dc3545;
    color: white;
}

.select-all {
    margin-right: 10px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .bookings-section {
        padding: 10px;
    }
    
    .filters-section {
        flex-direction: column;
    }
    
    .search-box, .status-filter {
        width: 100%;
    }
    
    .bookings-table {
        display: block;
        overflow-x: auto;
    }
    
    .bulk-actions {
        flex-wrap: wrap;
    }
}

.tabs {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.tab-btn {
    padding: 8px 16px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.tab-btn.active {
    background: #0066CC;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #e0e0e0;
}