.homestyle {
    width: 100%;
    min-width: 250px;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    flex-direction: row !important;
}

.button-div {
   
    margin-top: 1%;
    width: 70%;
  
    border-radius:20px;
}

.columns-grid-desc {
    width:200%;
}

.form-control{
    width:135%;
}

.container-activity {
    float: right;
    background-color: white;
    border-radius: 10px;
    margin-right: 30%;
    margin-top: 4%;
    width: 20%;
    height: 40%;
    padding: 5em;
}

    .container-activity button{
        margin-top: 5%;
        margin-button: 3%;
    }

.container button {
    margin-left: 80%;
    margin-bottom: 3%;
}

.notes {
    position: fixed;
    float: right;
    background-color: white;
    margin-top: 4%;
    margin-left: 73%;
    margin-right: 6%;
    width: 400px; /* Ancho fijo */
    height: auto; /* Altura automática basada en contenido */
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 1%;
}
.button-groupnotes {
    display: flex;
    align-items: center; /* Alinea verticalmente los botones */
    gap: 0.5%;
    margin-bottom: -8%;

}
.filterDate button {
    margin-left: 95%;
    margin-top: 10px;
}
.textNotes {
    background-color: white;
    box-shadow: 12px 10px 10px rgb(128, 128, 128);
    margin-bottom: 10%;
    width: 100%;
   
    max-height:500px;
    left: -1px;
    padding: 10px 7px 5px;

}
.notes button {
    margin-left: 80%;
    margin-bottom: 3%;
}

.notes-textarea {
    margin-bottom: 5rem;
    width: 280px; /* Ancho fijo para los textareas */
    height: 80px; /* Altura fija para los textareas */

}
body {
    min-height: 100vh;
}
.reminder {
    display: flex !important;
    flex-direction: row !important;
    position: fixed;
    bottom: 0;
    width: 100% !important;
    color: black !important;
    /*padding-bottom: 20px;*/ 
    margin: 20px
}

.container-description {
    margin-top:5%;
    display: flex;
    justify-content: center;
    height:30vh;
}
.form-description {
    border-radius:3%;
    background-color:white;
    flex-direction: column;
    width:50vh;
    height:40vh;
}


.container-description textarea {
    margin-left: 20%;
    margin-top:5%;
    margin-bottom:5%;
    width: 320px;
    height: 200px;
}

.text-description-part2 {
    display: flex;
    flex-direction: column;
}

.save {
    width: 10vh;
    margin-left: 40%;
}

/* Estilo para la fila del encabezado del RadzenDataGrid */

.center-login {
    box-shadow: 12px 10px 10px rgb(128, 128, 128);
    background-color: white;
    width: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}


    .center-login input{
        margin-left:-20%;
        margin-top:10%;
        margin-bottom:10%;
    }
.image {
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    background-color:white;
    margin-bottom:10%;
}
.centrar-form {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}
.center-login button{
    margin-bottom:10%;
}
.header {
    width: 100%;
    height: auto;
    display: flex !important;
    flex-direction: row !important;
    box-shadow: 0 8px 2px -2px gray;
  
}
.rz-inputtext{
    background-color:transparent !important;

}
.rz-calendar-button{
    margin-left:20px;
}

    .actualDate {
    margin-left: 90%;
    height: 70%;
}

.options{
    margin-left:85%;
    border:none;
    background-color:beige;
    font-size:larger;
}

/*dropdown del welcome de home*/
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 75%;
}

.dropbtn {
    background-color: transparent;
    color: black;
    padding-bottom: 1%;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 15%;
}

.dropdown-content {
    color:black !important;
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    z-index: 1;
    margin-left: 15%;
}

    .dropdown-content a {
        color: black !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: beige;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.buttonactivities {
    margin-top:-2.8%;
    margin-left: 55%;
}

.footer-hours {
    position: fixed;
    bottom: 0;
    width: 10%;
    background-color: #f1f1f1;
    padding: 10px;
}

/*.rz-grid-table {
    width: auto;
    border-style:none;
  
}*/

.custom-modal .modal-content {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    box-shadow: none;
}

.saveChangePass {
    color: black !important;
    background-color: transparent !important;
    border-color: darkblue !important;
    font-weight: bold;
    transition: all 0.3s ease !important;
}

    .saveChangePass:hover {
        color: white !important;
        background-color: darkblue !important;
    }

.font-savePass {
    color: black;
    font-weight: bold;
}

.floating-notes {
    position: fixed; /* Mantiene el div en una posición fija */
    top:30%;
    left:40%;
    background-color:transparent; /* Fondo blanco */
    border-radius: 8px; /* Bordes redondeados opcional */
    padding: 16px; /* Espaciado interno */
    z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
    display: none; /* Ocultar por defecto */

    width: 320px; /* Ancho fijo */
    height: 700px; /* Altura fija */
}
    /* Estilo para mostrar el div flotante */
    .floating-notes.show {
        display: block;
    }
.button-notes {
    background-color: #335088 !important;
}


.notesDay {
    position: fixed;
    float: right;
    background-color: white;
    margin-top: 3%;
    margin-left: 73%;
    margin-right: 6%;
    width: 400px;
    height: auto;
    max-height:1000px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 1%;
   
}
.textNotes2 {
    background-color: white;
    box-shadow: 12px 10px 10px rgb(128, 128, 128);
    margin-bottom: 10%;
    width: 95%;
    height:auto;
    max-height:1000px;
    left: -1px;
    padding: 10px 7px 5px;
}
.notes-textarea2 {
    margin-bottom: 3rem;
    width: 100%;
    height: 80px;
   
}
.button-groupnotes2 {
    display: flex;
    align-items: center; /* Alinea verticalmente los botones */
    gap: 0.5%;
    margin-bottom: 1%;
}
