
*{
    box-sizing: border-box;
}

body{
    padding: 0px;
    margin: 0px;
    transition: 0.5s; 
    background-color: white;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
}

body.dark-mode{
    background-color: rgb(52, 51, 51);
    transition: 0.5s; 
}

main {
    flex: 1; /* ca să ocupe tot spațiul rămas */
}

#title{
    color: green;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

#title{
    color: white;
}

#title-create{
    font-size: 30px;
    text-align: center;
}

/*--
#container{
    max-width: 1400px;
    height: auto;
    margin: 80px;
    display: grid;
    /* grid-template-columns: 400px 200px;
    gap: 25px;
    border: 3px solid green;
    border-radius: 15px;
    padding: 20px;
}
----------------------------------- */

#first-principal-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

#second-principal-container{
    width: auto;
    display: flex;
    justify-content: center;
    margin: 20px;
}

#first-container{
    border: 3px solid green;
    border-radius: 15px;
    padding: 30px;
    max-width: 1000px;
    margin: 10px;
}

#first-container.dark-mode{
    border: 3px solid white;
}

#second-container{
    border-bottom: 3px solid green;
    border-top: 3px solid green;
    padding: 15px;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#your-list{
    color: green;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

body.dark-mode p{
    color: white;
}

label{
    color: green;
    font-size: 20px;
}

#first-input-container{
    display: flex;
    align-items: center;
    gap: 7px;
}

body.dark-mode #title-create{
    color: white;
}

body.dark-mode label{
    color: white;
}

body.dark-mode ::placeholder{
    color: black;
}

body.dark-mode #first-container{
    border: 3px solid white;
}

body.dark-mode #submit{
    background-color: white;
    color: black;
}

body.dark-mode #your-list{
    color: white;
}

body.dark-mode #second-container{
    border-bottom: 3px solid white;
    border-top: 3px solid white;
}

body.dark-mode #minigame{
    color: white;
}

body.dark-mode .goback{
    color: white;
}

body.dark-mode footer div{
    background-color: rgb(42, 41, 41);
}

/*-------------------------------------------------------*/

#submit{
    color: white;
    font-size: 15px;
    font-weight: bold;
    background-color: green;
    border: none;
    border-radius: 15px;
    padding: 10px;
    padding-left: 50px;
    padding-right: 50px;
}

#title-create{
    color: green;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0px;
}

#center{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

::placeholder{
    color: green;
}

.input:focus{
    outline: none;
}

.input:hover{
    cursor: pointer;
}

input[type="submit"]:active{
    transform: scale(0.9);
    transition: 0.2s;
}

#footer-text{
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    padding: 2px;
    text-align: center;
    font-size: 13px;
}

#minigame{
    text-align: center;
    margin-top: 80px;
    color: green;
    font-weight: bold;
    font-size: 25px;
}

.goback{
    color: green;
    font-size: 19px;
}

#link{
    width: 100%;
    display: flex;
    justify-content: center;
}

footer div{
    width: 100%;
    background-color: green;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    padding: 2px;
    display: flex;
    justify-content: center;
    position: sticky;
    bottom: 0;
}


@media(min-width: 630px){
    #center{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    #submit{
        padding: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

/*-----------------------------------------*/

/*------------------------------------------------*/

.day-hour{
    display: flex;
    justify-content: center;
    gap: 5px;
}

.day-hour-content{
    display: flex;
    justify-content: center;
    gap: 20px;
}


.activity{
    border: 2px solid green;
    border-radius: 15px;
    padding: 10px;
    height: 140px;
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.costum{
    text-align: center;
    color: white;
    color: green;
    font-weight: bold;
}

.activ{
    font-size: 25px;
    margin: 0px;
}






.remove{
    color: white;
    background-color: rgb(229, 8, 8);
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 5px;
    padding-left: 55px;
    padding-right: 55px;

}


/*------------------------------------------------*/

.dark-mode .activity{
    border: 2px solid white;
}