/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

/* Initialisation du document */
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}


/* Style de base du document */
body {
    margin: 0;
    padding: 0;
    background-image: url('../pictures/minimalist.png');
    background-repeat: no-repeat;
    background-color: #125950;
    background-size: cover;
    width: auto;
    height: auto;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
}

/* Style pour le titre */
.titre {
    font-family: 'Bad Script', cursive;
    font-size: 2em;
    margin: 20px 0;
    margin-left: 30px;
    text-align: left;
}

/* Conteneur principal */
.container {
    display: flex;
    margin-left: 10x;
    margin: 20px;

}

/* Style pour Pomodoro */
.pomodoro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 50%;
    background-color: #288757;
    border-radius: 15px;
    padding: 20px;
    opacity: 0.9;
}

.ligne {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.pomodorobtn{
    background-color: #47b07d;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #47b07d;
    border: 1.5px solid #ffffff;
    border-radius: 15px;
    width: auto;
}

.shortBreakbtn{
    background-color: #47b07d;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #47b07d;
    border: 1.5px solid #ffffff;
    border-radius: 15px;
    width: auto;
}

.longBreakbtn{
    background-color: #47b07d;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #47b07d;
    border: 1.5px solid #ffffff; 
    border-radius: 15px;
    width: auto;
}

.timerpomodoro {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #fff;
    background-color: #47b07d;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin: 50px;
    margin-bottom: 20px;
}

.controles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    padding: 0;
    background-color: #288757;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
    height: 100px;
}

.start {
    /* Styles de base pour le bouton */
    background-color: #47b07d;
    color: #FFFFFF;    
    font-family: "Space Grotesk", sans-serif;
    padding: 10px 60px;
    font-size: 16px;
    background-color: #47b07d;
    border: 1.5px solid #ffffff; 
    border-radius: 15px; 
    width: auto;
}

.recommencer {
    padding: 25px 30px;
    background-image: url('../pictures/restart.png');
    background-size: cover;
    border: none;
    width: auto;
    background-color: #288757;
}

/* Style pour Tasks */
.tasks {
    flex-basis: 25%;
    background-color: #288757;
    border-radius: 15px;
    padding: 20px;
    margin-left: 10px;
    opacity: 0.9;
}

.addbtn {
    padding: 10px 68px;
    border: 2px dashed #fff;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    margin-top: 30px;
}

.addbtn:hover {
    background-color: #fff;
    color: #125950;
}

.taskItem {
    margin-bottom: 10px;
    margin-top: 10px;
}

.taskInput {
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Space Grotesk", sans-serif;
}

.validateBtn {
    padding: 5px 10px;
    background-color: #125950;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
}

.taskItemValue {
    margin-top: 10px;
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.deleteBtn {
    padding: 10px;
    background-image: url('../pictures/delete.png');
    background-size: cover;
    border: none;
    background-color: #288757;
}

/* Conteneur pour les autres sections */
.lateral {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    flex-basis: 25%;
    opacity: 0.9;
}

.music {
    width: 320px;
    height: 250px;
    background-color: #288757;
    border-radius: 15px;
    padding: 20px;
}

.discord {
    width: 320px;    
    height: 110px;
    background-color: #7289da;
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
    text-align: center;
}

.quote {
    width: 320px;
    height: 80px;
    background-color: #288757;
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}
