@font-face {
    font-family: 'Afacad';
    src: url('https://project.gd.edu.kg/assets/fonts/Afacad-Regular.ttf') format('truetype');
}

body {
    font-family: 'Afacad', sans-serif;
    background-color: #c6e6f5;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 200px;
    margin-bottom: 40px;
}

.search-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    display: flex;
    gap: 10px;
}

#searchInput {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.result-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.result-item:hover {
    background: #f0f0f0;
}

#goButton {
    background: #1b86b9;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
}

#goButton:hover {
    transform: scale(1.05);
}

#goButton::after {
    content: "→";
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
    .search-container {
        width: 90%;
    }
    
    #searchInput {
        font-size: 16px;
        padding: 12px 16px;
    }
}
