body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #282c34;
    color: #61fba4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    background-color: #282c34;
    color: #61fba4;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
}

.profile-circle {
    width: 100px; /* Ajuste o tamanho conforme necessário */
    height: 100px; /* Ajuste o tamanho conforme necessário */
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px; /* Centraliza e adiciona margem inferior */
}

.logo {
    max-width: 100%;
    height: 100%;
    border-radius: 50%; /* Garante que a imagem seja um círculo dentro do contêiner */
    display: block;
    margin: 0 auto; /* Centraliza a imagem dentro do contêiner */
}

section {
    width: 80%;
    margin-top: 20px;
    background-color: #282c34;
    border: 1px solid #61fba4;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#taskList {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #61fba4;
    width: 100%;
}

.task input {
    margin-right: 10px;
}

.taskActions {
    display: flex;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
}

label {
    margin-bottom: 10px;
}

.separator {
    border: none;
    height: 1px;
    background-color: #61fba4;
    margin: 20px 0;
    width: 100%;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #282c34;
    color: #61fba4;
    width: 100%;
}

.actions {
    display: flex;
    gap: 10px;
}

.addTaskContainer {
    display: flex;
    width: 100%;
    gap: 10px;
}

#newTask {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
}

#newTask::placeholder {
    color: #282c34;
}

button {
    background-color: #61fba4;
    color: #282c34;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45e0a2;
}

/* Popup styles */
#popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px;
    background-color: #282c34;
    color: #61fba4;
    border: 1px solid #61fba4;
    border-radius: 5px;
    z-index: 1000;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
