/* style.css */

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: white;
}

nav, footer {
    background-color: white;
}

#content-background {
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    flex-shrink: 0;
}

/* body {
    display: flex;
    flex-direction: column;
} */

main {
    flex: 1 0 auto;
    margin-top: 40px;
}

#main-content > *{
    text-align: center;
    align-items: center;
}

.card {
    margin-bottom: 5px;
}

#date-heading {
    margin-top: 10px;
}

#add-event-button {
    margin-top: 16px;
}

#edit-score-button {
    display: inline-block;
}

#delete-scores-form {
    display: inline;
}

#edit-event-button {
    display: inline-block;
}

.event-timings, .event-title {
    color: white;
}

.event-title:hover {
    cursor: pointer;
}

.nav-link:hover {
    cursor: pointer;
}

li {
    list-style: none;
}

#leaderboard {
    margin-bottom: 40px;
    margin-top: 60px;
    min-width: 100%;
}

#edit-event-form {
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

a {
    text-decoration: none;
    color: white;
}

.custom-link-color {
    text-decoration: underline;
    color: #38b6ff;
}

#woollswebsites-link {
    text-decoration: underline;
    color: #38b6ff;
}

.class-name-link {
    text-decoration: underline;
    color: black;
    transition: all 0.3s ease-in-out;
}

.class-name-link:hover {
    text-decoration: underline;
    color: #38b6ff;
}


@media screen and (max-width: 600px) {
    #leaderboard {
        max-width: 75%;
    }
    footer, nav {
        min-width: 100%;
    }
    
}




