@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

html {
    font-family: 'Arial', sans-serif;
    margin: 0;
    overflow-y: scroll;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #f1f8fd;
    color: #007cb9;
    margin: 0;
    padding: 0;
    padding-top: 7rem;
    font-size: 14px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    text-decoration: none;
    background: #f6c667;
    color: #005689;
    padding: 0.5rem 0.8rem;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    margin-top: 10px; /* Some spacing */
    border-radius: 0.2rem;
}

.button.secondary {
    background:#007cb9;
    color: #f1f8fd;
    padding: 0.2rem 0.5rem;
}

.button.secondary:hover {
    background: #0194dd;
}

.logout-btn {
    background-color: #911010;
    padding: 0.2rem 0.5rem;
    color: white;
    margin-top:0;
}

.admin-btn {
    background-color: black;
    padding: 0.2rem 0.5rem;
    color: white;
    margin-top:0;
}

.button:hover,
.button:active{
    background-color: #005689;
    color: #f1f8fd;
}
