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

h1 {
    text-align: center;
}

.week-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button,
.week-button {
    background: none;
    border: none;
    color: white;
    cursor: default;
    font-family: Arial, sans-serif;
    font-size: 4em;
    margin: 0 30px;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.week-button {
    font-weight: bold;
}


.h1:focus {
    outline: none;
}

p {
    font-size: 3em;
    text-align: center;
}

.date-range {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.date-range .date,
.date-range .dash {
    white-space: nowrap;
    padding: 0 10px;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.github-link {
    color: inherit;
    text-decoration: none;
}

.github-link:hover {
    text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 600px) {
    .date-range {
        flex-wrap: wrap;
        text-align: center;
    }

    .date-range .dash {
        width: 100%;
    }
}
