/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Status Pages */
.status-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
    padding: 1rem;
    color: white; /* Default text color for status pages */
}

.status-page.success {
    background-color: #198754; /* Bootstrap green */
}

.status-page.warning {
    background-color: #ffc107; /* Bootstrap yellow */
    color: #212529; /* Dark text for yellow background */
}

.status-page.invalid, .status-page.error {
    background-color: #dc3545; /* Bootstrap red */
}

.status-page h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.status-page h2 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.status-page p.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Other styles from previous Site.css */
/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header h1 {
    margin: 0;
    font-size: 1.5rem;
}

.main-header h1 a {
    color: #1a2b4d;
    text-decoration: none;
}

.user-info {
    font-size: 0.9rem;
}

.user-info span {
    margin-right: 1rem;
}

/* Footer */
.main-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #888;
}

/* Forms */
.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

/* Buttons */
button, .button-primary, .button-secondary, .logout-button {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.button-primary {
    background-color: #007bff;
    color: white;
}
.button-primary:hover {
    background-color: #0056b3;
}

.button-secondary {
    background-color: #6c757d;
    color: white;
}
.button-secondary:hover {
    background-color: #5a6268;
}

.logout-button {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    width: auto;
    font-size: 0.9rem;
}
.logout-button:hover {
    background: #c82333;
}

/* Messages */
.message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
}
.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.success-message {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.info-message {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Validation Page Specifics */
.validation-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}
.card h3 {
    margin-top: 0;
    color: #007bff;
}
.card p {
    margin: 0.5rem 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .actions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.action-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.action-card h4 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}