/* =============================================
   STUDIO-RESOURCES.CSS
   ============================================= */

.cs-studio-resources {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 20px;
}

.cs-resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.cs-resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.cs-resource-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.1);
}

.cs-resource-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.cs-resource-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.cs-resource-status.available {
    background: #00E676;
}

.cs-resource-status.occupied {
    background: #ff4444;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.cs-resource-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cs-resource-status-text {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.cs-resource-book {
    width: 100%;
    padding: 6px;
    font-size: 0.8rem;
}

.cs-upcoming-bookings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-upcoming-bookings h4 {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0 0 10px 0;
}

.cs-booking-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cs-booking-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 0.85rem;
}

.cs-booking-client {
    font-weight: 500;
}

.cs-booking-details {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cs-resource-grid {
        grid-template-columns: 1fr;
    }
}