.enhanced-select {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.enhanced-select__search {
    width: 100%;
    padding: 0.5em 0.8em !important;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.enhanced-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    z-index: 1000;
}

.enhanced-select__option {
    padding: 0.5em;
    cursor: pointer;
}

.enhanced-select__option:hover {
    background-color: #f5f5f5;
}

.conditional-content {
    display: none;
}


/* fade-message style */

#fadeMessage {
    position: fixed;
    top: 0;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    z-index: 99999999;
}
.message-success {
    background-color: rgb(101 205 105 / 95%);
    color: #FFF;
}
.message-error {
    background-color: rgb(244 67 54 / 95%);
    color: #FFF;
}
.message-warning {
    background-color: rgba(240, 201, 4, 0.95);
    color: #FFF;
}
.message-info {
    background-color: rgba(112, 206, 250, 0.95);
    color: #FFF;
}

.message-fade-out{
    animation: fadeOut 4s forwards;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}