body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #333;
    margin-bottom: 5px;
}

header p {
    color: #666;
    margin: 0;
}

#search-form {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#search-button {
    background: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

#search-button:hover {
    background: #005a87;
}

#search-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#status-container {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #007cba;
}

#status-message {
    margin: 0;
    color: #333;
}

#results-container {
    margin-top: 20px;
}

#results-header {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

#results-header h3 {
    margin: 0 0 5px 0;
    color: #333;
}

#results-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

#results-list {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.result-excerpt {
    margin-bottom: 10px;
    color: #333;
}

.result-link {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
}

.result-link:hover {
    text-decoration: underline;
}

#relay-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

#relay-info h4 {
    margin: 0 0 10px 0;
    color: #333;
}

#relay-info ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

#relay-info li {
    margin-bottom: 5px;
}