﻿.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    align-items: start;
}

.filters-bar {
    display: flex !important;
    flex-wrap: nowrap;
    margin: 0 20px 1rem 20px;
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filters-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem;
}

.filter-section {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}


.status-filters {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-left: auto;
}


    .status-filters .rz-button {
        border: 1px solid #E1E1E1;
        background-color: white;
        color: #969696;
        font-weight: 600;
        border-radius: 24px !important;
        padding: 0.4rem 1.2rem !important;
        font-size: 0.95rem !important;
        box-shadow: none;
        min-width: auto;
    }

        .status-filters .rz-button.selected {
            background-color: #FF6600;
            color: white;
            border: 1px solid #FF6600;
        }
