.intentions-container:nth-child(2) {
    padding: 20px;
}

.month-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--color_a);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nav-button {
    background: var(--color_a);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.5s;
}

.nav-button.disabled {
    background: none;
    cursor: not-allowed;
    color: #c3c3c3;
    border-color: #c3c3c3;
    border: 1px solid #c3c3c3;
}

.nav-button.disabled:hover {
    background: var(--gray0);
}

.nav-button:hover:not(.disabled) {
    background: var(--color_pl);
    transition: 0.5s;
}

.date-container {
    margin-bottom: 20px;
}

.date-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.intentions {
    margin-bottom: 30px;
}

.intentions h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #232323;
    font-weight: 900;
}

.translate {
    margin-left: 10px;
    color: #777;
}

h2.month-title {
    text-align: center;
    text-transform: uppercase;
    color: #c2c2c2;
    font-weight: normal;
}

h2.month-title span {
    font-weight: 800;
    color: var(--color_a);
}

.days-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.day-box {
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
    border: 1px solid var(--color_a);
    color: var(--color_a);
    width: 106px;
    display: flex;
    justify-content: center;
}

.day-box.selected {
    background: var(--color_a);
    color: white;
}
.day-box.selected:hover {
    background: var(--color_pl);
    border-color:var(--color_pl);
}

.day-box:hover {
    background: #ddd;
}

.day-title {
    margin: 0;
    color: inherit;
    font-weight: bold;
    text-transform: uppercase;
    word-spacing: 6px;
}

.intentions-details {
    margin-top: 20px;
    background-color: var(--gray0);
    padding: 40px;
    border-radius: 8px;
    height: 500px;
    overflow-y: auto;
}

.intention-day h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.intentions-list {
    margin-top: 10px;
}

.intention-item {
    margin-bottom: 10px;
}

.intention-time {
    font-weight: bold;
    color: #555;
}

.info_intention {
    color: #2d2d2d;
    margin: 3px 5px 0!important;
}

.tab-content p{
	font-size: 15px !important;
}

.intentions-container a.nav-arrow{
    display: flex;
    color: #c2c2c2;
    align-items: center;
    font-size: 35px;
    cursor: pointer;
}

.intentions-container a.nav-arrow.next{
    margin-left: 5px;
}
.intentions-container a.nav-arrow.prev{
    margin-right: 5px;
}