body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: #333333;
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: white;
}

h1, h2 {
    color: #4CAF50;
}

/* Texto histórico */
.subtitle-text {
    font-size: 14px;
    color: #666;
}

/* Área de input e botão de adicionar */
.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Botões */
button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

#btn-historico {
    width: 100%;
    margin-top: 10px;
}

/* Listas / Itens da Lista */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #f9f9f9;
    margin-bottom: 5px;
    border-radius: 4px;
    border-left: 5px solid #4CAF50;
}

.item-text {
    flex: 1;
    margin-left: 10px;
    cursor: pointer;
}

/* Classe aplicada quando o item for marcado como concluído */
.completed .item-text {
    text-decoration: line-through;
    color: #888;
}

/* Botões de ação dentro da lista */
.delete-btn {
    background-color: #f44336;
    padding: 5px 10px;
    font-size: 14px;
}

.delete-btn:hover {
    background-color: #d32f2f;
}

.history-btn {
    background-color: #2196F3;
    padding: 5px 10px;
    font-size: 14px;
    margin-right: 5px;
}

.history-btn:hover {
    background-color: #0b7dda;
}

/* Divisor de seções */
.section-divider {
    margin: 30px 0 15px 0;
    border-top: 2px dashed #ccc;
}


/* Footer da versão */
.versao{
    font-family: Arial, sans-serif;
    text-align: center;
    color: #494949;
}