body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 0;
}

.main-title {
    text-align: center;
    color: #dc3545; /* Rosso */
    margin-bottom: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
    margin: 0 0 1em;
}

.font-bold {
    font-weight: bold;
}

.harry {
    color: #0056b3; /* Blu scuro */
}

.hermione {
    color: #6a0dad; /* Viola scuro */
}

.piton {
    color: #016936; /* Verde scuro */
}

.frodo {
    color: #8b0000; /* Rosso scuro */
}

.dado {
    color: #00008b; /* Blu scuro per Dado */
}

/* Stili per il separatore e il pulsante */
.day-separator-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin: 20px 0;
}

.day-separator-btn::before,
.day-separator-btn::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #6c757d;
}

.day-separator-btn::before {
    margin-right: 15px;
}

.day-separator-btn::after {
    margin-left: 15px;
}

.day-separator-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border: 1px solid #6c757d;
    border-radius: 5px;
    color: #6c757d;
    font-weight: bold;
    white-space: nowrap;
    background-color: #fff;
}

.toggle-icon {
    font-size: 1.2em;
    font-weight: bold;
    color: #6c757d;
}

/* Stile per il contenuto che può essere compresso */
.day-content {
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.day-content.collapsed {
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}