.search-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

.search-examples {
    align-self: flex-start;
    margin-left: 12.5%;
}

.search-example {
    background: #3391ED;
    border-radius: 4px;
    padding: 4px 6px;
    width: fit-content;
}

.search-input {
    font-size: 24pt;
    padding: 30px 10px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #303030;
    color: #ffffff;
    outline: none;
    width: 100%;
}

.search-and-submit {
    width: 75%;
    height: 50px;
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
}

.search-submit {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background-color: #4080ff;
    color: #ffffff;
    cursor: pointer;
    height: 60px;
    width: 5%;
    min-width: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#search-results {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#search-results p {
    line-height: 0.5 !important;
}

.search-result {
    font-size: 22px;
}

.search-result-content {
    padding: 4px;
}

#loading-message {
    display: none;
    width: 10%;
    height: 10%;
}

.search-result-preview {
    display: inline;
}