/* News Search Container Styling */
.news-search-bar {
    position: relative;
    width: 400px;
}

.news-search-input {
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
    background-color: #f8f9fa;
    width: 100%;
    border: none;
}

.news-search-input:focus {
    box-shadow: none;
    outline: none;
    background-color: #fff;
}

.input-group {
    background-color: #f8f9fa;
    border-radius: 30px;
    border: 1px solid #e9ecef;
}

.news-search-btn {
    background-color: transparent;
    color: #6c757d;
    border-radius: 0 30px 30px 0;
    padding: 0 15px;
    border: none;
    transition: all 0.2s;
}

.news-search-btn:hover {
    color: #232147;
}

/* Autocomplete Results Dropdown */
.news-autocomplete-results,
.news-mobile-autocomplete-results {
    position: absolute;
    z-index: 1000;
    background: white;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
    top: 100%;
}

/* Mobile Search Styling */
.news-mobile-search-bar {
    position: relative;
    background-color: #232147;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.news-mobile-search-bar .input-group {
    background-color: #f8f9fa;
    border-radius: 30px;
}

.news-mobile-search-bar .news-search-input {
    border-radius: 30px 0 0 30px;
}

.news-mobile-search-bar .news-search-btn {
    border-radius: 0 30px 30px 0;
}

.news-mobile-autocomplete-results {
    top: 100%;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
}

/* Ensures proper spacing in the header */
.header .container {
    position: relative;
}