/* Algemene achtergrond met kleurverloop */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #89CFF0, #FFFFFF);
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Container met schaduw en afgeronde hoeken */
.container {
    max-width: 800px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    color: #004d40;
    font-size: 2em;
    margin-bottom: 10px;
}

section {
    margin: 20px 0;
}

/* Knoppen met animatie bij hover */
button {
    padding: 12px 25px;
    background-color: #00796b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #004d40;
    transform: scale(1.05);
}

/* Stijlen voor tekstvelden en selecties */
textarea, select {
    width: 100%;
    height: 45px;
    margin-top: 10px;
    padding: 12px;
    border: 2px solid #00796b;
    border-radius: 8px;
    resize: none;
    outline: none;
    font-size: 1em;
}

/* Ademhalingsoefening cirkel met zachte animatie */
#breath-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #80cbc4;
    margin: 20px auto;
    animation: none;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/* Stemming advies sectie met schaduw en kleuraccent */
#mood-advice, #recommendations, #gratitude-log, #journal-entries, #sleep-log, #quick-notes-log {
    margin-top: 15px;
    padding: 15px;
    background-color: #f0fdfa;
    border-left: 6px solid #00796b;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Mindfulness timer met rustige kleuren */
#timer-display {
    font-size: 2.5em;
    color: #00796b;
    margin-top: 10px;
}

/* Dagelijkse affirmatie met cursieve stijl */
#daily-affirmation {
    font-style: italic;
    color: #555;
    font-size: 1.2em;
    margin: 20px 0;
}

/* Dagboek, slaapdagboek en andere log-secties met schaduw */
#journal-entries, #sleep-log, #quick-notes-log {
    max-height: 200px;
    overflow-y: auto;
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Stressmeter en waardeweergave */
#stress-meter-section {
    text-align: center;
}

#stress-level {
    font-weight: bold;
    color: #00796b;
    font-size: 1.1em;
}

/* Gewoonten tracker met checkbox stijl */
#habit-tracker-section ul {
    list-style-type: none;
    padding: 0;
}

#habit-tracker-section li {
    text-align: left;
    margin: 10px 0;
    font-size: 1.1em;
}

input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}