body {
    font-family:'Courier New', Courier, monospace;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: gray;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.back {
    position: fixed;
    top: 20px;
    left: 20px;
    text-decoration: none;
    z-index: 1;
}

.back > h1 {
    margin: 0;
    color: blue;
}

.back > h1:hover {
    cursor: pointer;
    color: darkblue;
}

@media screen and (max-width: 800px) {
    #container {
        top: 50px;
    }
}

/* TOASTER */
/* Add to styles.css or inside a <style> tag in index.html */
#toaster-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toaster {
    min-width: 220px;
    padding: 14px 24px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0.95;
    animation: fadeInOut 3s forwards;
}
.toaster.success { background: #2ecc40; }
.toaster.warning { background: #ffb700; color: #222; }
.toaster.error { background: #e74c3c; }

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px);}
    10% { opacity: 0.95; transform: translateY(0);}
    90% { opacity: 0.95; }
    100% { opacity: 0; transform: translateY(-20px);}
}

/* Suggestions box */
#suggestions {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    width: 80vw;
    max-width: 600px;
    background-color: #f9f9f9;
}
#suggestions h2 {
    margin-top: 0;
    color: #333;
}
#suggestions form {
    display: flex;
    gap: 10px;
}
#suggestions input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
#suggestions input[type="text"]:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
#suggestions button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 100px;
    height: 62px;
    margin-top: 0;
}

#suggestions select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* select dropdown*/
#suggestions select:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}