
.habitus-shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.custom-select-container {
    position: relative;
    display: flex;
}

.habitus-control {
    width: 100%;
    font-size: 0.875rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #c7ccd1;
    line-height: 1.4rem;
    padding: .5rem .75rem;
    border-radius: 1.5rem;
    box-sizing: border-box;
}

.custom-select-container img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background-color: transparent;
    border-width: 0px;
}


.full-width {
    width: 100% !important;
}

.btn-green {
    width: max-content;
    background-color: #036665;
    border: none;
    border-radius: 20px;
    color: #fff;
    flex-shrink: 0;
    margin-bottom: 0px !important;
    padding: 6px 16px;
}



.m-2 {
    margin: 0.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}


.circle-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #79D1BB; /* You can change this to any color you want */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Icon color */
}

.multi-select-dropdown-container {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

/* multi-select-dropdown header (where selected items are shown) */
.multi-select-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #fff;
    border: 1px solid #c7ccd1;
    border-radius: 1.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 400;
    color: #495057;
    position: relative;
    user-select: none;
}

    /* Text inside the multi-select-dropdown header */
    .multi-select-dropdown-header span {
        flex: 1;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Arrow icon for multi-select-dropdown, rotating when opened */
    .multi-select-dropdown-header i {
        transition: transform 0.2s ease;
        font-size: 0.875rem;
    }

        .multi-select-dropdown-header i.rotate {
            transform: rotate(180deg); /* Rotate when multi-select-dropdown is open */
        }

/* multi-select-dropdown menu that contains the checkboxes */
.multi-select-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #c7ccd1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 0.25rem;
}

/* Individual multi-select-dropdown item (checkbox + label) */
.multi-select-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
}

    .multi-select-dropdown-item input {
        margin-right: 8px;
        cursor: pointer;
    }

    /* Hover state for items */
    .multi-select-dropdown-item:hover {
        background-color: #f1f3f5;
    }

/* Custom checkbox style */
input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Style for the multi-select-dropdown when it's closed (focused state) */
.multi-select-dropdown-container:focus-within .multi-select-dropdown-menu {
    display: block;
}

/* For multi-select-dropdown header when it's focused */
.multi-select-dropdown-header:focus {
    outline: none;
    border-color: #5c9f89;
}

/* Scrollbar for long multi-select-dropdown lists */
.multi-select-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.multi-select-dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .multi-select-dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

