:root{
    --semiBlack: #111111;
    --semiLightBlack: #1b1b1b;
    --lightBlack: #808080;
    --gray: #55557b;
    --white: #fff;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--semiBlack);
}

#btnEliminarTarea{
    background-color: transparent;
    border: none;
}

.cajaPastilla {
    align-items: start;
    display: flex;
    width: 80%;
}

.tachoBasura{
    width: 30px;
    height: 30px;
}

#textoTarea{
    width: 100%;
    word-break: break-all;
    padding-left: 4%;
    padding-right: 4%;
    color: var(--white);
}
.pastilla{
    background-color: rgba(77, 86, 116, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3%;

}

#cajaBB{
    width: 60%;
}

.botonAgregar{
    font-size: 1em;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-style: none;
    color: var(--semiLightBlack);
}

.labelTarea {
    color: rgb(233, 233, 233);
    margin-right: 10px;
    margin-bottom: 15px;
}


h1{
    margin-top: 60px;
    margin-left: 60px;
    color: var(--white);
    text-align: left;
    font-size: 20px;
}

form{
    border: 1px solid;
    /*width: auto;*/
    min-width: 300px;
    max-width: 720px;
    margin-top: 25px;
    margin-left: 60px;
    text-align: left;
    border-color: var(--semiBlack);

}

form input[type="text"]{
    background-color: var(--semiLightBlack);
    color: var(--white);
    border-style: none;
    padding: 10px;
    margin-right: 8px;
    margin-bottom: 18px;
    font-size: 1em;

}
form input[type="text"]::placeholder{
    color:var(--lightBlack);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    
}

form input[type="text"]:focus{
    outline: none;
    
}

form input[type="submit"]{
    font-size: 1.5em;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-style: none;
    color: var(--semiLightBlack);
    
}

form input[type="submit"]:hover{
    background-color: var(--lightBlack);
    cursor: pointer;
    color: var(--white);
}



.list-container{
    width: 400px;
    margin-top: 15px;
    margin-left: 60px;
}

.task-container{
    background-color: var(--semiLightBlack);
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 16px;
    border-radius: 4px;
    font-size: 1em;
    color: var(--lightBlack);
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.closeBtn{
    width: 25px;
    height: 25px;
}

.closeBtn:hover{
    background-color: var(--lightBlack);
    border-radius: 50%;
    cursor: pointer;
}

#stats{
    margin-top: 25px;
    font-size: 1em;
    color: var(--lightBlack);
    text-align: left;
    margin-left: 60px;
}

header {
    width: 100%;
    height: auto;
}

/*lo nuevo de nav*/
/* Agrega este estilo a tu archivo CSS */
.nav {
    background-color: var(--semiLightBlack); /* Color de fondo de la barra de navegación */
    padding: 8px; /* Espacio interno para los elementos */
    text-align: center;
  }

  .nav ul {
    list-style: none;
    padding: 0;
  }
  
  .nav li {
    display: inline; /* Muestra los elementos en línea */
    margin-right: 30px; /* Espacio entre elementos (ajusta según sea necesario) */
  }
  
  .nav a {
    text-decoration: none;
    color: gray; /* Color del texto del enlace */
    transition: .3s;
  }
  
  .nav a:hover {
    color: #fff; /* Cambia el estilo al pasar el mouse sobre el enlace */
  }
  
  .nav a:focus {
    color: var(--white); /* Cambia el estilo al pasar el mouse sobre el enlace */
  }
  
.conteiner{
    margin: auto;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    z-index: 100;
}

/* CALENDARIO */


section{
    position: relative;
    display: flex;
    justify-content: right;
    align-items: center;
    min-height: 60vh;
    background: var(--semiBlack);
    overflow: hidden;
    margin-right: 60px;
    margin-left: 1350px;
    margin-top: 60px;
    margin-bottom: 1400px;

}

.box{
    position: relative;
    z-index: 1000;
}

.container{
    position: relative;
    width: 400px;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 15px rgba(121, 121, 121, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 40px;

}

.navText {
    font-size: medium;
    text-align: center;
}

.navStyle {
    text-align: center;
}