/* main css */

body {
    /* margin: 10px; */
    font-size: calc(15px + 0.390625vw);
    /* padding-bottom: 3rem; */
    font-family: "GT America Mono", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: black;
}

h1,
h1 input {
    font-size: calc(30px + 0.390625vw);
    font-weight: 900;
    margin-bottom: 20px;
    font-style: italic;
}
h1 input {
    cursor: pointer;
    color: coral;
    text-decoration: underline;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
}
h1 input:focus {
    outline: none;
}
h2 {
    font-size: calc(20px + 0.390625vw);
    font-weight: 900;
    margin-bottom: 10px;
    color: coral;
    font-style: italic;
}

strong {
    font-weight: 900;
}

a {
    color: black;
}

#form {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.25rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 3rem;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}
#input {
    border: none;
    padding: 0 1rem;
    flex-grow: 1;
    border-radius: 2rem;
    margin: 0.25rem;
}
#input:focus {
    outline: none;
}
button,
.custom-file-upload {
    background: black;
    border: none;
    padding: 5px;
    /* margin-left: 5px; */
    border-radius: 3px;
    outline: none;
    color: #fff;
    cursor: pointer;
}
button.active {
    background: coral;
    color: black;
}
button.disabled {
    pointer-events: none;
    background-color: darkgrey;
}
input[type="file"] {
    display: none;
}
.custom-file-upload {
    cursor: pointer;
    float: right;
    font-size: 13px;
    display: block;
    height: 15.5px;
    line-height: 15px;
}

.footer {
    align-items: initial;
    display: flex;
    justify-content: flex-start;
    flex-direction: row-reverse;
}

/* Apply GT America Mono to all buttons */
button {
    font-family: "GT America Mono", monospace;
}

/* DepartureMono utility class */
.departure-mono {
    font-family: "DepartureMono", monospace;
}

.bot-id {
    text-align: center;
    font-weight: bold;
}
