/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Page Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* Heading */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* 🔹 Dropdown Container */
.select-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

/* Dropdown Label */
label {
    font-size: 16px;
    margin: 10px 0 5px;
    display: block;
}

/* Dropdown */
select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: #fff;
    width: 220px;
    text-align: center;
    cursor: pointer;
}

/* 🔹 Textareas */
textarea {
    display: block;
    width: 90%;
    max-width: 600px;
    height: 140px;
    padding: 12px;
    margin: 10px auto;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #fff;
    resize: none;
    transition: 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #00ff99;
    box-shadow: 0 0 8px #00ff99;
}

/* 🔹 Output Textarea (Readonly) */
#outputText {
    background-color: #333;
    color: #ddd;
    font-weight: bold;
    cursor: default;
}

/* 🔹 Button */
button {
    display: block;
    background-color: #00cc99;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    margin: 15px auto;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    width: 220px;
}

button:hover {
    background-color: #00ff99;
    box-shadow: 0px 4px 10px rgba(0, 255, 153, 0.3);
}

/* 🔹 Responsive Design */
@media (max-width: 600px) {
    textarea {
        height: 120px;
    }

    select {
        width: 90%;
    }

    button {
        width: 90%;
    }
}
