/* search.css - Dedicated stylesheet for search functionality only */

/* Base background style */
body {
    background-color: #000000;
    width: 1100px;
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 5px;
}

/* Navigation Bar Styles */
.navbar {
    overflow: hidden;
    background-color: #222222;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: red;
    font-weight: bold;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #444444;
}



/* Search results styling */
.search-results {
    width: 100%;
    margin: 20px 0;
}

.search-results a {
    display: block;
    padding: 8px 0;
    margin: 0;
    color: #0066ff;
    text-decoration: none;
    font-size: 16px;
}

.search-results a:hover {
    color: #ffcc00;
    background-color: transparent;
}

/* Override any conflicting styles */
.search-results a {
    float: none !important;
    clear: both !important;
    text-align: left !important;
    line-height: 1.5 !important;
}

/* Search input styling */
.search-input {
    width: 750px;
    height: 40px;
    padding: 10px;
    font-size: 24px;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    padding-left: 15px;
}
