#rrr-search-container {
    font-family: 'VT323', monospace;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
}

.rrr-search-box {
    background-color: #081018;
    border: 4px solid #0e3b43;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.9);
}

.rrr-label {
    color: #22d3ee;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 0.1em;
}

.rrr-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.rrr-input-group {
    flex-grow: 1;
    position: relative;
}

#rrr-search-input {
    width: 100%;
    background-color: #000;
    border: 2px solid #0e7490;
    color: #f59e0b;
    padding: 0.75rem;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

#rrr-search-input:focus {
    border-color: #22d3ee;
}

#rrr-cursor {
    position: absolute;
    right: 0.75rem;
    top: 0.65rem;
    color: #f59e0b;
    pointer-events: none;
    font-size: 1.2rem;
}

#rrr-search-button {
    background: linear-gradient(to bottom, #d97706, #b45309);
    border: 2px solid #fb923c;
    color: #000;
    font-weight: bold;
    padding: 0 1rem;
    cursor: pointer;
    font-family: 'VT323', monospace;
    font-size: 1.1rem;
    transition: all 0.1s;
    box-shadow: 0 4px 0 rgba(0,0,0,0.5), 0 0 10px rgba(251,146,60,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

#rrr-search-button:hover {
    background: linear-gradient(to bottom, #f97316, #c2410c);
}

#rrr-search-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

#rrr-search-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(to bottom, #d97706, #b45309);
}

#rrr-results {
    position: relative;
    z-index: 10;
    display: none;
}

#rrr-results ul {
    list-style: none;
    margin: -2px 0 0 0;
    padding: 0;
    background-color: #000;
    border: 2px solid #0e7490;
    border-top: none;
}

#rrr-results a {
    display: block;
    padding: 0.75rem;
    color: #f59e0b;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

#rrr-results a:hover {
    background-color: #22d3ee;
    color: #000;
}
