.search-container {
    margin-bottom: 40px;
}

.search-form {
    position: relative;
    max-width: 600px;
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e8eb;
    border-radius: 12px;
    font-size: 16px!important;
    font-family: inherit;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3182f6;
    box-shadow: 0 0 0 4px rgba(49, 130, 246, 0.1);
}

.search-input::placeholder {
    color: #8b95a1;
}

.search-button {
    padding: 16px 26px;
    background: #3182f6;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px!important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.search-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.search-icon {
    display: none;
}

/* 작은 모바일 화면에서 더욱 최적화 */
@media (max-width: 480px) {
    .search-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
