/*
Theme Name: Search Hub Redirect
Description: Minimal theme that redirects all traffic to a configurable URL while preserving API endpoints.
Version: 1.0.0
Author: Custom Development
*/

/* Minimal styles for fallback page */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

.redirect-message {
    text-align: center;
    padding: 50px 20px;
    max-width: 600px;
    margin: 100px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.redirect-message h1 {
    color: #333;
    margin-bottom: 20px;
}

.redirect-message p {
    color: #666;
    line-height: 1.6;
}

.redirect-message a {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

.redirect-message a:hover {
    background: #005a87;
}