body{
    min-height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

button{
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
}

h1{
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: small;
    margin: 0;
}

h2{
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #e52317;
}

p{
    margin: 0;
    background-color: white;
    border-radius: 2px;
    padding: 2px;
    color: black;
}

.header{
    display: flex;
    flex-direction: row;
    min-height: 10vh;
    background-color: white;
    padding-left: 50px;
    padding-bottom: 10px;
}

.header>img{
    height: 10vh;
}

.main{
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    justify-content: center;
    align-items: center;
    padding: 5vh;
    background-color: #2a4c9c;
}

.promptArea{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    background-color: white;
    padding: 50px;
    border-radius: 25px;
}

.promptList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promptList>:nth-of-type(even){
    background-color: #93969e;
}

.promptBox{
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    background-color: lightgrey;
    margin-bottom: 10px;
    border: none;
    color: #2a4c9c;
}

.nameField{
    margin-bottom: 10px;
}

.fieldLabel{
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    padding-left: 5px;
    font-weight: bold;
}

.nameInput{
    border-radius: 5px;
    border: none;
    font-family: 'poppins', sans-serif;
}

.promptInput{
    border-radius: 5px;
    border: none;
    font-family: 'poppins', sans-serif;
    resize: vertical;
}

.promptButton{
    margin-top: 20px;
    min-width: 120px;
    min-height: 50px;
    border-radius: 25px;
    background-color: #2a4c9c;
    border: none;
    color: white;
    align-self: center;
}

.promptButton:hover{
    background-color: #e52317;
}

.buttonContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.fileSelectArea{
    background-color: white;
    border: 4px solid #e52317;
    border-radius: 50vh;
    padding: 0 50px;
}

.fileSubmitButton{
    margin: 20px;
    min-width: 80px;
    min-height: 30px;
    border-radius: 15px;
    background-color: #e52317;
    border: none;
    color: white;
}

.fileSubmitButton:hover{
    background-color: #2a4c9c;
}

.outputArea{
    background-color: #2a4c9c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.output{
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 24px;
}

button:disabled{
    border: 0 solid #999999;
    background-color: #cccccc;
    color: #666666;
}

button:disabled:hover{
    border: 0 solid #999999;
    background-color: #cccccc;
    color: #666666;
}


.modalContainer{
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    pointer-events: none;
}

.modalContainer.show{
    opacity: 1;
    pointer-events: auto;
}

.modal{
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 50vw;
    height: 70vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
}

.modalHeader{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 5%;
    margin-bottom: 10px;
}

.modalFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
}

.searchbar{
    align-self: center;
    width: 90%;
    border: 1px, solid, #666666;
    border-radius: 100vh;
    margin-bottom: 10px;
}

.promptContainer{
    align-self: center;
    width: 90%;
    height: 80%;
    border: 1px, solid, #666666;
    border-radius: 5px;
    padding: 10px;
    overflow: scroll;
    
}

.boxnav{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.note{
    background-color: white;
    border-radius: 5px;
    color: red;
    font-weight: bold;
}