body {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: sans-serif;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    /* justify-content: center; /* Only centers vertically if content is less than min-height */
    min-height: 100vh;
    margin: 0;
    /* padding: 20px; /* Removed to allow sections to control their own full-width potential */
    box-sizing: border-box;
    transition: background-color 0.5s ease; /* Merged from other body rule */
}

.container {
    text-align: center;
    background-color: #34495e;
    padding: 30px 50px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
}

#timer {
    font-size: 80px;
    margin: 20px 0;
    font-weight: bold;
}

.modo-botoes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background-color: #2c3e50; /* Slightly darker than container */
    padding: 8px;
    border-radius: 25px;
}

.modo-btn {
    background-color: transparent;
    border: none;
    color: #bdc3c7; /* Muted text color */
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modo-btn.active {
    background-color: #e74c3c; /* Red for active Pomodoro */
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tarefa-input {
    margin: 15px 0;
}

#nome-tarefa {
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.botoes button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.botoes button {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #9d2d20; /* 3D effect */
    position: relative;
    top: 0;
}
.botoes button:active {
    top: 2px; /* Push button down on click */
    box-shadow: 0 2px 0 #9d2d20;
}

.botoes button:hover {
    background-color: #c0392b;
}

#estatisticas {
    margin-top: 30px;
    text-align: left;
}

#estatisticas ul {
    list-style-type: '✅  ';
    padding-left: 20px;
}

#estatisticas li {
    background-color: #2c3e50;
    margin-bottom: 5px;
    padding: 8px;
    border-radius: 5px;
}

/* Estilos para o modal de configurações */
.modal {
    position: fixed; /* Fica fixo na tela */
    z-index: 1; /* Fica sobre outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Habilita scroll se necessário */
    background-color: rgba(0,0,0,0.4); /* Fundo preto com opacidade */
}

.modal-content {
    background-color: #34495e;
    margin: 15% auto; /* 15% do topo e centralizado */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Pode ajustar conforme necessário */
    max-width: 400px;
    border-radius: 10px;
    color: #ecf0f1;
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content div {
    margin-bottom: 15px;
}

.modal-content label {
    display: block;
    margin-bottom: 5px;
}

.modal-content input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #2c3e50;
    border-radius: 5px;
    background-color: #ecf0f1;
    color: #2c3e50;
}

.fechar-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.fechar-modal:hover,
.fechar-modal:focus {
    color: #ecf0f1;
    text-decoration: none;
    cursor: pointer;
}

#salvar-configuracoes {
    background-color: #27ae60; /* Verde */
}

#salvar-configuracoes:hover {
    background-color: #229954;
}

/* #configuracoes-btn is now styled by the general .botoes button rule */
/* #configuracoes-btn {
    background-color: #27ae60;
}

#configuracoes-btn:hover {
    background-color: #229954;
} */

/* Melhorias Visuais */
/* body rule merged above */

.container {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2); /* Sombra mais pronunciada */
    transition: border-left-color 0.5s ease; /* Transição para a borda */
    border-left: 5px solid #e74c3c; /* Cor padrão Pomodoro */
}

/* Cores para diferentes estados do timer */
body.estado-pomodoro {
    background-color: #2c3e50; /* Azul escuro original */
}
.container.estado-pomodoro {
    border-left-color: #e74c3c; /* Vermelho Pomodoro */
}
#timer.estado-pomodoro {
    color: #ecf0f1; /* Cor original do texto do timer */
}


body.estado-pausa-curta {
    background-color: #27ae60; /* Verde para pausa curta */
}
.container.estado-pausa-curta {
    border-left-color: #2ecc71; /* Verde mais claro para borda */
}
#timer.estado-pausa-curta {
    color: #ffffff;
}


body.estado-pausa-longa {
    background-color: #2980b9; /* Azul para pausa longa */
}
.container.estado-pausa-longa {
    border-left-color: #3498db; /* Azul mais claro para borda */
}
#timer.estado-pausa-longa {
    color: #ffffff;
}


/* Feedback visual para botões ativos/selecionados */
.botoes button.active { /* Estilo para o botão do modo atual */
    background-color: #c0392b; /* Cor de hover padrão, mas pode ser ajustada por JS */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
    transform: translateY(1px);
}

/* Ajuste para botões de pausa terem cores diferentes quando ativos */
#iniciar-curta-pausa.active {
    background-color: #229954; /* Verde escuro para pausa curta ativa */
}
#iniciar-longa-pausa.active {
    background-color: #2980b9; /* Azul escuro para pausa longa ativa */
}

/* Estilos para a Lista de Tarefas */
.tarefas-container {
    margin-top: 30px;
    text-align: left;
    background-color: #2c3e50; /* Cor de fundo similar às sessões concluídas */
    padding: 15px;
    border-radius: 8px;
}

.tarefas-container h2 {
    margin-top: 0;
    border-bottom: 1px solid #34495e; /* Linha separadora para o título */
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.adicionar-tarefa {
    display: flex;
    margin-bottom: 15px;
}

#nova-tarefa-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #34495e;
    border-radius: 5px 0 0 5px;
    background-color: #ecf0f1;
    color: #2c3e50;
    font-size: 14px;
}

#adicionar-tarefa-btn {
    padding: 10px 15px;
    background-color: #27ae60; /* Verde, similar ao Salvar Configs */
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

#adicionar-tarefa-btn:hover {
    background-color: #229954;
}

#lista-tarefas {
    list-style-type: none;
    padding-left: 0;
}

#lista-tarefas li {
    background-color: #34495e; /* Fundo do item da tarefa */
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, opacity 0.3s;
}

#lista-tarefas li.completed {
    text-decoration: line-through;
    opacity: 0.6;
    background-color: #2c3e50; /* Cor mais escura para tarefa completada */
}

#lista-tarefas .tarefa-texto {
    cursor: pointer; /* Indica que o texto é clicável para marcar como concluído */
    flex-grow: 1;
}

#lista-tarefas .remover-tarefa-btn {
    background-color: #e74c3c; /* Vermelho, como botões de controle principais */
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 10px;
}

#lista-tarefas .remover-tarefa-btn:hover {
    background-color: #c0392b;
}

/* Ajuste para o nome da tarefa no Pomodoro */
#nome-tarefa::placeholder { /* Estilo do placeholder do foco */
    color: #bdc3c7;
    opacity: 0.7;
}

#nome-tarefa:focus {
    outline: 2px solid #3498db; /* Destaque ao focar */
}

/* Estilos para o botão de navegação e painel de Histórico */
.botao-navegacao { /* Estilo base para botões como "Ver Histórico" */
    display: block;
    width: auto; /* Ajusta para padding do container se necessário, ou usa % */
    margin: 20px auto 0;
    padding: 12px 20px;
    background-color: #3498db; /* Azul, como o botão de Configurações */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center;
}

.botao-navegacao:hover {
    background-color: #2980b9;
}

/* Specific style for Ver Histórico button */
#ver-historico-btn {
    background-color: #27ae60; /* Verde */
}

#ver-historico-btn:hover {
    background-color: #229954; /* Verde mais escuro */
}

#historico-painel .modal-content {
    /* Herda .modal-content, mas pode ter ajustes específicos */
    max-width: 600px; /* Um pouco mais largo para o histórico */
}

#lista-historico-sessoes {
    list-style-type: none;
    padding-left: 0;
    max-height: 300px; /* Altura máxima com scroll */
    overflow-y: auto;
    margin-bottom: 15px;
    border: 1px solid #2c3e50;
    border-radius: 5px;
    background-color: #2c3e50; /* Fundo da lista */
}

#lista-historico-sessoes li {
    background-color: #34495e; /* Fundo de cada item do histórico */
    padding: 10px;
    margin: 5px; /* Margem entre os itens */
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#lista-historico-sessoes li span {
    margin-right: 10px;
}

#lista-historico-sessoes li .hist-data {
    color: #bdc3c7; /* Cinza claro para data */
    font-size: 0.9em;
}

#lista-historico-sessoes li .hist-tarefa {
    flex-grow: 1;
    margin: 0 10px;
    color: #ecf0f1; /* Cor principal do texto */
}
#lista-historico-sessoes li .hist-duracao {
    color: #bdc3c7;
}


#lista-historico-sessoes li .hist-tipo {
    padding: 3px 7px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8em;
    min-width: 80px; /* Largura mínima para alinhar um pouco */
    text-align: center;
}

#lista-historico-sessoes li .hist-tipo-pomodoro {
    background-color: #e74c3c;
}
#lista-historico-sessoes li .hist-tipo-pausaCurta {
    background-color: #2ecc71;
}
#lista-historico-sessoes li .hist-tipo-pausaLonga {
    background-color: #3498db;
}


#limpar-historico-btn {
    background-color: #e74c3c; /* Vermelho para ação destrutiva */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    display: block;
    margin: 10px auto 0;
}

#limpar-historico-btn:hover {
    background-color: #c0392b;
}

/* Estilos para o Player do YouTube */
#youtube-player-container {
    width: 100%;
    max-width: 480px; /* Ou o tamanho que preferir, mantendo proporção */
    aspect-ratio: 16 / 9; /* Proporção comum para vídeos */
    margin: 20px auto; /* Centraliza e adiciona espaço */
    background-color: #000; /* Fundo preto caso o vídeo não carregue ou como placeholder */
    border-radius: 8px; /* Bordas arredondadas */
    overflow: hidden; /* Garante que o iframe não ultrapasse as bordas arredondadas */
}

#youtube-player-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Remove a borda padrão do iframe */
}

/* Ajuste para o input de URL do YouTube no painel de configurações */
.modal-content input[type="text"]#youtube-url { /* Específico para o input da URL do YouTube */
    width: calc(100% - 22px); /* Similar aos inputs number */
    padding: 10px;
    border: 1px solid #2c3e50;
    border-radius: 5px;
    background-color: #ecf0f1;
    color: #2c3e50;
    font-size: 14px; /* Consistente com outros inputs */
    margin-bottom: 10px; /* Espaçamento abaixo se necessário */
}

#youtube-url::placeholder {
    color: #95a5a6; /* Cor do placeholder mais suave */
    font-style: italic;
}

/* Styles for .navigation-buttons container and its general buttons */
.navigation-buttons {
    text-align: center; /* Centraliza os botões se estiverem inline-block */
    margin-top: 20px;
    margin-bottom: 20px; /* Espaço antes do painel de histórico ou da seção "Sobre" */
}

.navigation-buttons button {
    margin: 5px; /* Espaçamento entre os botões */
    /* Herda estilos de .botoes button ou .botao-navegacao, ajuste se necessário */
}


/* Estilos para a seção "Sobre o Pomodoro" */
.content-section { /* Este é o container externo para a seção de texto */
    width: 100%; /* Ocupa a largura total disponível */
    margin-top: 40px; /* Mais espaço acima */
    margin-bottom: 40px; /* Espaço abaixo */
    padding: 0 20px; /* Padding lateral para não colar nas bordas da tela */
    box-sizing: border-box;
}

.content-section .container-textual { /* Container interno para o conteúdo textual */
    max-width: 800px; /* Largura máxima para boa legibilidade */
    margin: 0 auto; /* Centraliza o container textual */
    padding: 30px;
    background-color: #34495e; /* Cor de fundo similar ao container principal */
    color: #ecf0f1; /* Cor de texto principal */
    border-radius: 8px;
    line-height: 1.7; /* Aumenta um pouco o espaçamento entre linhas */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


.content-section h2 {
    color: #ffffff; /* Título principal mais destacado */
    text-align: center;
    margin-top: 0; /* Remove margem do topo se for o primeiro elemento */
    margin-bottom: 30px; /* Mais espaço abaixo do título principal */
    border-bottom: 2px solid #e74c3c; /* Linha separadora com cor do Pomodoro */
    padding-bottom: 15px;
    font-size: 2em; /* Tamanho maior para o título principal da seção */
}

.content-section h3 {
    color: #e74c3c; /* Cor de destaque Pomodoro para subtítulos */
    margin-top: 25px; /* Espaço acima dos subtítulos */
    margin-bottom: 15px; /* Espaço abaixo dos subtítulos */
    font-size: 1.5em; /* Tamanho para subtítulos */
}

.content-section p {
    margin-bottom: 18px; /* Espaçamento entre parágrafos */
    text-align: left; /* Alinhamento à esquerda para melhor leitura de texto longo */
}

.content-section ul, .content-section ol {
    margin-bottom: 18px;
    padding-left: 25px; /* Ajusta padding para alinhar com o texto */
}

.content-section ul li, .content-section ol li {
    margin-bottom: 10px; /* Espaçamento entre itens da lista */
    padding-left: 5px; /* Pequeno padding para o texto do item */
}

.content-section ul {
    list-style-type: '🍅 '; /* Marcador temático */
}

.content-section ol {
    list-style-type: decimal;
}

.content-section strong {
    color: #f1c40f; /* Amarelo para destacar palavras-chave */
    font-weight: 600; /* Um pouco mais de peso */
}

.content-section .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto; /* Centraliza a imagem e adiciona espaço vertical */
    border-radius: 8px; /* Bordas arredondadas para as imagens */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Sombra sutil */
}


/* Footer simples, se quiser adicionar no futuro */
/*
footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #bdc3c7;
    font-size: 0.9em;
}
*/

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 15px; /* Adjusted padding for responsiveness */
    margin-top: 40px;
    color: #bdc3c7; /* Muted color for footer text */
    font-size: 0.85em; /* Slightly smaller font for footer */
    width: 100%;
    box-sizing: border-box;
}

footer p {
    margin: 0;
}

/* --- Media Queries for Responsiveness --- */

/* Medium screens (Tablets, larger phones) */
@media (max-width: 768px) {
    .container {
        padding: 20px 25px; /* Reduce horizontal padding */
    }

    #timer {
        font-size: 64px; /* Reduce timer font size */
    }
    .botoes button {
        font-size: 15px;
        padding: 10px 15px;
    }

    .modal-content {
        width: 80%;
        margin-top: 10%;
        padding: 15px;
    }

    #historico-painel .modal-content {
        max-width: 85%;
    }
     #lista-historico-sessoes {
        max-height: 250px;
    }


    .content-section .container-textual {
        padding: 20px;
        max-width: 90%; /* Allow text container to use more width */
    }

    .content-section h2 {
        font-size: 1.7em;
    }

    .content-section h3 {
        font-size: 1.25em;
    }
    .content-section p, .content-section ul li, .content-section ol li {
        font-size: 0.98em;
    }
}

/* Small screens (Mobile phones) */
@media (max-width: 480px) {
    .container {
        padding: 15px;
        max-width: 90%;
    }

    #youtube-player-container {
        margin: 15px auto;
        /* aspect-ratio will handle height based on width */
    }

    #timer {
        font-size: 48px;
        margin: 15px 0;
    }

    .tarefa-input {
        margin: 10px 0;
    }
    #nome-tarefa {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .botoes {
        flex-wrap: wrap;
        justify-content: space-around; /* Distribute space more evenly */
    }

    .botoes button {
        flex-grow: 1; /* Allow buttons to grow */
        flex-basis: calc(33.333% - 10px); /* Aim for 3 per row, adjust as needed */
        min-width: 120px; /* Minimum tap size / readability */
        margin: 5px;
        padding: 12px 5px; /* Adjust padding for smaller text */
        font-size: 13px;
    }
    /* Specific overrides if some buttons need to be wider/stack */
    .botoes button#configuracoes-btn { /* Example: make settings button full width */
         /* flex-basis: 100%; */
         /* For now, let it flow with others */
    }


    .navigation-buttons {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .navigation-buttons button,
    #limpar-historico-btn {
        width: calc(100% - 10px); /* Full width buttons in this group */
        padding: 12px;
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }

    .adicionar-tarefa {
        flex-direction: column; /* Stack input and button */
    }
    #nova-tarefa-input {
        border-radius: 5px;
        margin-bottom: 8px; /* Space between input and button */
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
    #adicionar-tarefa-btn {
        border-radius: 5px;
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .modal-content {
        width: 90%;
        padding: 15px;
        margin-top: 5%;
        max-height: 85vh;
    }
    .modal-content h2 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }
     .modal-content label {
        font-size: 0.9em;
        margin-bottom: 3px;
    }
    .modal-content input[type="number"],
    .modal-content input[type="text"]#youtube-url {
        padding: 10px;
        font-size: 1em;
        margin-bottom: 8px; /* Reduce space between setting items */
    }
    .modal-content div {
        margin-bottom: 10px;
    }


    #estatisticas,
    .tarefas-container {
        padding: 10px;
        margin-top: 15px;
    }
     #estatisticas ul, #lista-tarefas {
        padding-left: 5px; /* Reduce list padding */
    }
    #lista-tarefas li {
        padding: 8px;
        font-size: 0.9em;
    }
    #lista-tarefas .remover-tarefa-btn {
        padding: 4px 8px;
        font-size: 11px;
    }

    #lista-historico-sessoes li {
        flex-direction: column;
        align-items: flex-start; /* Align items to the start */
        padding: 10px;
        font-size: 0.85em;
    }
    #lista-historico-sessoes li span {
        margin-bottom: 4px; /* Space out stacked items */
        margin-right: 0; /* Remove right margin as they are stacked */
    }
     #lista-historico-sessoes li .hist-tipo {
        align-self: flex-end; /* Move type badge to the right in stacked view */
        margin-top: -20px; /* Adjust to position nicely, may need tweaking */
     }


    .content-section {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 0 5px; /* Minimal side padding */
    }

    .content-section .container-textual {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .content-section h3 {
        font-size: 1.15em;
        margin-bottom: 8px;
    }
    .content-section p, .content-section ul li, .content-section ol li {
        font-size: 0.9em;
        line-height: 1.55;
    }
     .content-section ul, .content-section ol {
        padding-left: 20px;
    }
    .content-section .content-image {
        margin: 20px auto;
        /* max-width will handle scaling */
    }
}