/* Estilos específicos para el plugin customDropdown */
.custom-dropdown-container {
    position: relative;
    display: inline-block;
}

.custom-dropdown-toggle {
    padding: 10px 15px;
    margin: 0;
    border: 1px solid rgb(255, 201, 7);
    font-weight: bold;
    background-color: white;
    color: rgb(14, 43, 87);
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.2sease-in-out;
}


.custom-dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.custom-dropdown-menu { 
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    padding: 13px !important;
    max-width: 1000px;
}

.custom-dropdown-menu.show {
    display: block;
}

.custom-dropdown-content {
    padding: 0px;
    font-size: 14px;
}

.custom-dropdown-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.custom-reset, .custom-apply {
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.custom-reset {
    padding: 10px 15px;
    margin: 0;
    border: 1px solid rgb(255, 201, 7);
    font-weight: bold;
    background-color: white;
    color: rgb(14, 43, 87);
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.2sease-in-out;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.5;
    margin-right: 5px;
}

.custom-apply {
    padding: 10px 15px;
    margin: 0;
    border: 1px solid rgb(255, 201, 7);
    font-weight: bold;
    background-color: white;
    color: rgb(14, 43, 87);
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.2sease-in-out;
    background-color: rgb(255, 201, 7);
    font-size: 1rem;
    line-height: 1.5;
}
.custom-dropdown-title{
    color: #0e2b57;
    font-weight: bold;
    font-size: 14px;
}
