.rtsearchbox {
    display: none;
    position: absolute;
    width: 800px;
    max-width: 100%;
    min-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    padding: 20px;
    background-color: #ffffff;
    z-index: 90000;
    top: 100%;
    margin-top: 5px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .rtsearchbox {
        min-width: 100%;
        left: 0;
        transform: none;
    }
}

.rtareatitle {
    color: #ff6a00;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 5px;
}

.rtareatitle:first-child {
    margin-top: 0;
}

.rtareacontent {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.rtareacontent a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.rtareacontent a:hover {
    background-color: #f8f9fa;
    color: #ff6a00;
    text-decoration: none;
}

.rtsearchbox .moreresults {
    color: #888;
    font-style: italic;
    padding: 8px;
    margin-top: 5px;
    border-top: 1px dashed #eee;
}