/*
    style.css

    Egyszerű, letisztult induló stílus.
    Később ezt hozzáigazítjuk a végleges felülethez.
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f4f6;
    color: #1f2937;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    background: #1f2937;
    color: #ffffff;
    padding: 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    margin: 0;
    font-size: 28px;
}

.brand-subtitle {
    margin: 6px 0 0;
    opacity: 0.85;
    font-size: 14px;
}

.page-content {
    padding-top: 24px;
    padding-bottom: 40px;
}

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.card h2,
.card h3 {
    margin-top: 0;
}

.status-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 10px;
    line-height: 1.5;
}

.status-ok {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.status-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.info-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
}

.site-footer {
    background: #e5e7eb;
    color: #374151;
    text-align: center;
    padding: 18px 0;
}