/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BODY */
body {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* MAIN CONTAINER */
body > * {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 350px;
}

/* TITLE */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0d5e18;
}

/* DROPDOWN */
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    margin-bottom: 15px;
    font-size: 14px;
}

/* INPUT */
input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    margin-bottom: 10px;
    font-size: 14px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 10px;
    background: #34db4a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #06a320;
}

/* RESULT BOX */
#result {
    margin-top: 20px;
    padding: 15px;
    background: #f4f6f8;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
    white-space: pre-wrap;
}

/* ERROR STYLE */
#result:contains("not found") {
    color: red;
}