/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9));
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #333;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #555;
    font-weight: 500;
}

.dropdown {
    position: relative;
    width: 80%;
    margin-bottom: 15px;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background: linear-gradient(135deg, #e0e0e0, #ffffff);
    cursor: pointer;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #007bff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 2%;
    width: 95%;
    background: white;
    border: 2px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-search {
    width: 95%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #007bff;
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 10px;
}

#dropdown-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

#dropdown-options li {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, padding 0.3s;
    border-bottom: 1px solid #ddd;
}

#dropdown-options li:hover {
    background-color: #abebc6;
    padding-left: 20px;
}

button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
    transform: scale(1.05);
}

textarea {
    resize: none;
    height: 230px;
    width: 85%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #007bff;
    background: linear-gradient(135deg, #e0e0e0, #ffffff);
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, background 0.3s;
}

textarea:focus {
    border-color: #0056b3;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
}

/* Mobile Styles */
@media (max-width: 600px) {
    .card {
        padding: 20px 10px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .dropdown {
        width: 90%;
    }

    .dropdown-header {
        padding: 10px;
    }

    .dropdown-menu {
        left: 5%;
        width: 90%;
    }

    button {
        width: 90%;
        padding: 10px;
    }

    textarea {
        width: 90%;
        height: 150px;
    }
}

@media (max-width: 450px) {
    .card {
        margin-left: 13px;
        margin-right: 13px;
    }
}