body {
    background-color: #f0f4f8;
    font-family: 'Arial', sans-serif;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.date-container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: 40px auto;
}

.week-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    background-color: #FECC02;
    border-radius: 50%;
    color: #006AA7;
    font-size: 48px;
    font-weight: bold;
}

.week-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

#current-week-text {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

#current-date {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}