.rl-sitemap {
    background: linear-gradient(135deg, #1f9900, #000000);
    padding: 25px;
    border-radius: 12px;
    color: white;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

#rl-sitemap-search {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
    font-size: 16px;
}

#rl-sitemap-search:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31,153,0,0.4);
}

.rl-sitemap ul {
    list-style: none;
    padding: 0;
}

.rl-sitemap li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rl-sitemap a {
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}

.rl-sitemap a:hover {
    color: #1f9900;
}