body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

#settingsIcon {
    cursor: pointer;
}


.clock {
    font-size: 60px;
    text-align: center;
    margin: 0;
}

.percday {
    font-size: 20px;
    text-align: center;
}

.clockContainer {
    border: 1px solid black;
    padding: 10px;
    margin: 10px;
    width: 240px; /* Adjust to your needs */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 10px;
}

#calendarWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.monthBox {
    border: 1px solid black;
    padding: 10px;
    margin: 10px;
    width: 240px; /* Adjust to your needs */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 10px;
}

table {
    margin-top: auto; /* Centers the table vertically */
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 20px;
    text-align: center;
}

#settingsMenu {
    position: absolute;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#settingsMenu input[type="color"] {
    margin-right: 10px;
}

#saveSettings {
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.sunday {
    color: red; /* Set the text color to red */
    font-weight: bold; /* Make the text bold */
}
