body {
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 25px;
    margin: 0;
    background: #eef2f5;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 760px;
    width: 100%;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin-top: 0;
    font-size: 26px;
    font-weight: 600;
    color: #222;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
    margin-top: 18px;
}

textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #cfd6dd;
    font-size: 16px;
    resize: vertical;
    box-sizing: border-box;
    outline: none;
    transition: 0.25s border;
}

textarea:focus {
    border-color: #007aff;
    box-shadow: 0 0 6px rgba(0,122,255,0.3);
}

#suggestions {
    position: absolute;
    width: calc(100% - 60px);
    background: #fff;
    border: 1px solid #d0d7e1;
    border-radius: 12px;
    display: none;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 10;
}

.suggest-item {
    padding: 12px 14px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.suggest-item:hover {
    background: #eaf1ff;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background: #007aff;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 18px;
    font-weight: 600;
    transition: 0.25s background;
}

button:hover {
    background: #005ec7;
}

/* --- Mobile adjustments --- */
@media (max-width: 600px) {
    body { padding: 10px; }
    .container { padding: 18px 20px; }
    h2 { font-size: 22px; }
    textarea { font-size: 15px; padding: 12px; }
    button { font-size: 16px; padding: 13px; }
    #suggestions { width: calc(100% - 40px); max-height: 180px; }

    .notice {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 380px) {
    h2 { font-size: 20px; }
    textarea { font-size: 14px; }
    .container { padding: 15px; }
}

.notice {
    background: #fff7d6;
    border-left: 5px solid #ffcc00;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: #6b5500;
    line-height: 1.45;
}

/* Make TESTING ONLY red */
h2:nth-of-type(2) {
    color: red;
}
