/* CSS for styling the page elements */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

h1 {
    background-color: #000564;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 0;
}

#textDisplay,
.pillars, #pillars {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
}

#button{
    /* centre the buttons */
    display: flex;
    justify-content: center;

}

#textDisplay {
    line-height: 1.5;
}

#textInstructions {
    background-color: transparent;
    padding: 20px;
    margin: 20px;
    opacity: 0.5;
}

p {
    margin: 0;
    padding: 0;
}

#tagSelect {
    margin: 20px;
}

#nextButton,
#downloadButton {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
}

#nextButton:hover,
#downloadButton:hover {
    background-color: #555;
}

.knockback {
    opacity: 0.5;
    font-weight: normal;
}

.keysentence {
    font-weight: bold;
    background-color: #f7cf3d;
}

#hotkeys {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

#hotkeys .hotkey {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

select {
    margin-right: 50px;
}

    /* Hide the button */
#return_spreadsheet_hidden button {
        display: none;
    }

nav {
        background-color: #eee;
        height: 70px;
        
    }

.logo {
        float: right;
        padding-right: 10px; /* Adjust the padding as needed */
        padding-top: 5px;
        /* fit to size of nav */
        height: 50px;
    }


#tagButtons {
    display: flex;
    justify-content: center;
    margin: 20px;
}


.tagbutton{
    background-color: #9f9f9f;
    color: #fff;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    cursor: pointer;
}