/* Search Styles */
.search-icon {
    font-size: 20px !important;
    text-transform: none !important;
    font-weight: normal !important;
    transition: transform 0.3s ease, text-shadow 0.3s ease !important;
}

.search-icon:hover {
    transform: scale(1.2);
}

.search-container {
    margin: 20px 0;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #00b9fe;
    background-color: rgba(0, 185, 254, 0.1);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background-color: rgba(0, 185, 254, 0.2);
    box-shadow: 0 0 10px rgba(0, 185, 254, 0.5);
}

.search-results {
    margin-top: 20px;
}

.search-result {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #00b9fe;
    background-color: rgba(0, 185, 254, 0.05);
}

.search-result a {
    color: #00b9fe;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.search-result a:hover {
    color: #ff006e;
    text-decoration: underline;
}

.search-result p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
