* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23f5f5f5"/></svg>');
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 0;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 20px;
}

.logo {
    font-size: 36px;
    color: #0066cc;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Times New Roman", serif;
}

.subtitle {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.search-container {
    margin-bottom: 40px;
}

.search-box {
    text-align: center;
}

#searchInput {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #0066cc;
    border-radius: 0;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

#searchInput:focus {
    outline: none;
    border-color: #004499;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

.search-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.search-btn, .lucky-btn {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    border-radius: 0;
}

.search-btn:hover, .lucky-btn:hover {
    background-color: #004499;
}

.lucky-btn {
    background-color: #666;
}

.lucky-btn:hover {
    background-color: #444;
}

.results-container {
    margin-top: 30px;
    min-height: 200px;
}

.result-item {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 3px solid #0066cc;
    background-color: #f9f9f9;
}

.result-title {
    font-size: 18px;
    color: #0066cc;
    margin-bottom: 5px;
    font-weight: bold;
}

.result-title a {
    color: #0066cc;
    text-decoration: none;
}

.result-title a:hover {
    text-decoration: underline;
}

.result-url {
    font-size: 14px;
    color: #006633;
    margin-bottom: 5px;
    font-style: italic;
}

.result-snippet {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.result-meta {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.no-results h2 {
    color: #333;
    margin-bottom: 10px;
}

.suggestions {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    font-size: 14px;
}

.suggestions strong {
    color: #856404;
}

.footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.disclaimer {
    margin-top: 10px;
    font-style: italic;
    color: #999;
}

/* Estilo retro adicional */
.result-item:hover {
    background-color: #f0f0f0;
}

