body {
    font-family: Bookman, URW Bookman L, serif;
    background-color: #EDEDF9;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
}

img {
    max-width: 100%;
}

button {
    border-radius: 10px;
}

input, select {
    border-radius: 5px;
}

.sticky {
    position: fixed;
    top: 0;
}

.display_none {
    display: none;
}

/* Monolithic file input button */
input[type='file'] {
    display: none; /* hide native control */
}

.file-input {
    display: inline-block;
}

.file-button {
    display: block;
    min-width: 15rem;
    padding: 1rem;
    text-align: center;
    justify-content: center;
    background-color: #FBFBFD;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.file-button:hover {
    background-color: #D0D0F9;
}
