.date-container {
    display: flex;
    align-items: center;
    /*gap: 20px;*/ /* Space between the elements */
    /*padding: 40px;*/
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: space-evenly;
}

.month-box, .year-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    min-width: 30%; /* Ensure a minimum width for the boxes */
}

.gold-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, #f5dc79, #99783b, #6f4b22); /* Gold color gradient */
    width: 100%;
}

.top-line {
    top: 5px;
}

.bottom-line {
    bottom: 5px;
}

.date-text {
    color: #1a4f78; /* Deep blue/teal color */
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 1; /* Keep text above the lines if they overlap */
}

.day-number {
    color: #1a4f78; /* Deep blue/teal color */
    font-size: 70px; /* Large font size for the day */
    font-weight: 300; /* Lighter weight for the large number */
    line-height: 1;
    font-family: 'Playfair Display', Georgia, serif; /* Using a more decorative font if available */
    margin-top: -25px;
}