body {
    background-color: #404040ec;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', sans-serif;
}

.predictions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.predictions-container h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff; /*text color */
    font-family: 'Trebuchet MS', sans-serif; /*change font family */
    padding: 10px 20px; /*adds spacing inside the border */
    border-radius: 5px; /*rounds the edges */
    text-shadow: 3px 0 #000000, -3px 0 #000000, 0 3px #000000, 0 -3px #000000,
               1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
}

.predictions-box {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 40px;
}

#scatter-plot {
    width: 100%;
    height: 100%;
    border: none;
}

.search-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    width: 90vw;
    max-width: 90vw;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.search-input {
    width: 300px;
    height: 36px;
    padding: 5px;
    border: 4px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.search-button {
    height: 40px;
    padding: 0 15px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: 4px solid rgb(71, 104, 182);
    border-radius: 5px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #0056b3;
}

.dropdown-list {
    list-style-type: none;
    padding: 0;
    margin-top: 5px;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    top: 60px;
    left: 0;
    display: none !important;
}

.dropdown-list li {
    padding: 8px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background-color: #f0f0f0;
}

.search-message-success,
.search-message-first {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.search-message-success {
    color: #000000;
    font-size: 2em;
    font-weight: bold;
    display: none;
}

.search-message-first {
    color: #000000;
    font-size: 1.3em;
    display: none;
}

.search-message-first p {
    margin: 0;
}

.search-header {
    color: #000000;
    font-size: 0.9em;
    text-align: center;
}

.search-header p {
    margin-top: -5px;
}

.about-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 95vw;
    margin: 0 auto;
    padding: 10px;
}

.about-header-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 98vw;
    margin: 0 auto;
    padding: 0px;
    border-radius: 0px;
    border: 5px solid #161616;
    background: url('images/header_image.jpg') center/cover no-repeat;
    opacity: 0.8;
}

.about-header {
    font-size: 1em;
    text-align: center;
    margin-bottom: 0px;
    color: #ffffff;
    font-family: 'Trebuchet MS', sans-serif;
    padding: 20px 20px;
    border-radius: 5px;
    text-shadow: 3px 0 #000000, -3px 0 #000000, 0 3px #000000, 0 -3px #000000,
               1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
}

.about-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80vw;
    margin-top: 70px;
    padding: 0px;
    border-radius: 5px;
    background-color: #404040af;
    border: 5px solid #161616;
}

.about-text {
    font-size: 1.2em;
    text-align: center;
    color: #ffffff; /*text color */
    font-family: 'Trebuchet MS', sans-serif; /*change font family */
    padding: 10px 20px; /*adds spacing inside the border */
    border-radius: 5px; /*rounds the edges */
    text-shadow: 3px 0 #000000, -3px 0 #000000, 0 3px #000000, 0 -3px #000000,
               1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
}

.credits-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80vw;
    margin-top: 70px;
    padding: 0px;
    border-radius: 5px;
    background-color: #404040af;
    border: 5px solid #161616;
}

.credits-text {
    font-size: 0.9em;
    text-align: center;
    color: #ffffff; /*text color */
    font-family: 'Trebuchet MS', sans-serif; /*change font family */
    padding: 10px 20px; /*adds spacing inside the border */
    border-radius: 5px; /*rounds the edges */
    text-shadow: 3px 0 #000000, -3px 0 #000000, 0 3px #000000, 0 -3px #000000,
               1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
}