.formularioSimple form{
    padding: 0.75em;
}

.formularioSimple form input, .formularioSimple form select, .formularioSimple form textarea{
    margin-top: 1em;
    margin-bottom: 1em;
}

 .formularioSimple form label{
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: bold;
}

.formularioSimple #divBtnCrearUsuario{
    width: 100%;
    text-align: right;
}

.formularioSimple button{
    padding: 0.35em 1.25em 0.35em 1.25em;
    font-size: 1em;
    font-weight: bold;
}

.cursorPointer:hover{
    cursor: pointer;
}

.dropdown-item-custom {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s, color 0.3s;
    text-align: left;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    text-decoration: none; /* Remove underline */
}

.dropdown-item-custom:hover {
    background-color: #e2e6ea;
    color: #0056b3;
    text-decoration: none; /* Remove underline on hover */
}

.dropdown-item-custom i {
    margin-right: 10px;
}