#rjecnik-search-container {
    position: relative;
    max-width: 400px;
    margin: 20px 0;
}

#rjecnik-search {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    outline: none;
    background-color: #ffffff;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#rjecnik-search:focus {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15);
    background-color: #ffffff;
}

#rjecnik-search::placeholder {
    color: #888;
    font-style: normal;
}

#rjecnik-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

#rjecnik-search-results li {
    padding: 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#rjecnik-search-results li:last-child {
    border-bottom: none;
}

#rjecnik-search-results li:hover,
#rjecnik-search-results li.active {
    background-color: #f8f9fa;
}

#rjecnik-search-results li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

#rjecnik-search-results li:hover a,
#rjecnik-search-results li.active a {
    color: #007cba;
}

#rjecnik-search-results li.loading,
#rjecnik-search-results li.error,
#rjecnik-search-results li.no-results {
    padding: 12px 16px;
    color: #666;
    font-style: italic;
    text-align: center;
}

#rjecnik-search-results li.loading {
    color: #007cba;
}

#rjecnik-search-results li.error {
    color: #d63638;
}

/* Responsive design */
@media (max-width: 480px) {
    #rjecnik-search-container {
        max-width: 100%;
    }
    
    #rjecnik-search {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    #rjecnik-search-results li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Loading animation */
.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 