/* 
 * Base template custom styles
 * Extracted from inline <style> for better performance and security
 */

/* Sitemap button styling */
.sitemap-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(1, 18, 71, 0.05);
    color: #011247;
    text-decoration: none;
    border: 1px solid rgba(1, 18, 71, 0.15);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(1, 18, 71, 0.15);
    box-shadow: 0 4px 12px rgba(1, 18, 71, 0.1);
    transform: translateZ(0);
    cursor: pointer;
}

.sitemap-button:hover {
    background: rgba(1, 18, 71, 0.1) !important;
    border-color: rgba(1, 18, 71, 0.3) !important;
    box-shadow: 0 6px 16px rgba(1, 18, 71, 0.15) !important;
    transform: translateY(-2px) translateZ(0) !important;
    color: #011247 !important;
}

.sitemap-button:active {
    transform: translateY(0) translateZ(0) !important;
    box-shadow: 0 2px 8px rgba(1, 18, 71, 0.1) !important;
}

