@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;600&display=swap');

body {
    background: linear-gradient(135deg, #d1e7dd, #fefae0);
    color: #1f2937;
    font-family: 'SF Pro Display', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-weight: 600;
    font-size: 3rem;
    margin: 20px 0;
    text-align: center;
    color: #0f5132;
}

#results {
    margin-top: 20px;
    font-size: 1rem;
    width: 80%;
    max-width: 600px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow-y: auto;
    max-height: 300px;
}

#results div {
    margin-bottom: 10px;
    padding: 10px;
    background: #e5e7eb;
    color: #1f2937;
    border-radius: 8px;
}

#menu-icon {
    width: 50px;
    height: 50px;
    background: #0f5132;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#menu-icon:hover {
    background-color: #14532d;
    transform: scale(1.1);
}

#menu-icon .line {
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
}

#menu-options {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 180px;
}

#menu-options a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #1f2937;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#menu-options a:hover {
    background-color: #e9ecef;
}

#dropdown-menu:hover #menu-options {
    display: block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    #results {
        width: 90%;
    }
}
