.card {
    border: 1px solid var(--theme-dark-green);
    padding: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/*.card-title {
    height: 48px;
}*/

.card-body {
    color: var(--theme-dark-green);
    text-align: start;
    padding: 5px 0;
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/*FILTER */

.border-card-blue-filter {
    border: 1.5px solid var(--theme-dark-blue);
}

.border-card-green-filter {
    border: 1.5px solid var(--theme-dark-green);
}

.border-card-white-filter {
    border: 1.5px solid white;
    background-color: transparent !important;
}

.border-card-blue {
    border: 1px solid var(--theme-dark-blue);
}

.border-card-green {
    border: 1px solid var(--theme-dark-green);
}

.border-card-white {
    border: 1.5px solid white;
}

.search-container {
    border-radius: 10px;
    padding: 5px 10px;
    margin-top: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: #fff;
    user-select: none;
    position: relative;
    width: 100%;
}

    .search-container button {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        border: none;
        background: none;
    }

.dropdown-text {
    flex-grow: 1;
}

.line-container {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #222244;
}

    .line-container .state-text {
        font-weight: 700;
        color: var(--theme-dark-blue);
        text-decoration: none;
        margin-right: 10px;
        white-space: nowrap; /* prevent line break */
    }

.line {
    flex-grow: 1;
    border-bottom: 1px solid var(--theme-dark-blue);
}

.count {
    margin-left: 10px;
    color: var(--theme-dark-blue);
    font-weight: 600;
    white-space: nowrap;
}

.select-item {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 8px 12px;
    background: white;
    cursor: pointer;
}

    .select-item .dropdown-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
        margin-right: 10px;
    }

    .select-item .dropdown-text {
        display: flex;
        flex-direction: column;
    }

.dropdown-text .title {
    font-size: 14px;
    color: var(--theme-dark-blue);
    margin-bottom: 2px;
}

.dropdown-text .subtitle {
    font-weight: 700;
    color: var(--theme-dark-blue);
}

.select-item select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropdown-card {
    margin: 10px 0;
}

select,
::picker(select) {
    appearance: base-select;
}

::picker(select) {
    color: var(--theme-dark-blue);
    border: none;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 6px;
}

option {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid transparent;
    &:focus-visible

{
    outline: none;
    background: #dedfdf;
}

&:checked {
    font-weight: bold;
}

&::checkmark {
    display: none;
}

}

option:hover {
    background-color: var(--theme-dark-blue);
    color: white;
}
