* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f2f4f7;
    color: #222;
}
.wrap {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.card {
    background: #fff;
    max-width: 460px;
    width: 100%;
    border-radius: 10px;
    padding: 28px 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
h1 { margin: 0 0 6px; font-size: 22px; }
.sub { margin: 0 0 18px; color: #666; font-size: 14px; }

.status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 14px;
}
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
}
.badge-open { background: #2e7d32; }
.badge-closed { background: #c62828; }

.form label { display: block; margin: 12px 0 4px; font-weight: 600; font-size: 14px; }
.form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
.form button {
    margin-top: 18px;
    width: 100%;
    padding: 12px;
    background: #1565c0;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.form button:hover { background: #0d47a1; }

.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; border: 1px solid #ef9a9a; }
.alert-error ul { margin: 0; padding-left: 18px; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.info-table th, .info-table td { text-align: left; padding: 6px 4px; font-size: 14px; }
.info-table th { width: 40%; color: #555; }

.closed-msg { text-align: center; color: #888; padding: 18px 0; }

/* Header banner - shows FULL image uncropped, framed with matching dark background */
.site-header {
    width: 100%;
    background: linear-gradient(180deg, #1a1006 0%, #2b1a0a 100%);
    display: flex;
    justify-content: center;
    line-height: 0;
}
.header-img {
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    display: block;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
    padding: 22px 20px 26px;
    font-size: 13.5px;
}
.footer-line { margin: 4px 0; }
.footer-sub { color: #bbb; font-weight: normal; }