/* GLOBAL */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background: #f2f4f6;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* HEADER (ferah + büyük logo + tam ortalı başlık) */
.header {
    height: 105px;
    background: #ffffff;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-left {
    position: absolute;
    left: 22px;
}

.logo {
    height: 70px; /* BÜYÜTÜLDÜ */
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;  /* DAHA BÜYÜK */
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.header-right {
    position: absolute;
    right: 22px;
    text-align: right;
    font-size: 20px;   /* Daha büyük */
    font-weight: 700;
    line-height: 22px;
    color: #333;
}

/* AYLAR BAŞLIĞI — HİZALAMA: 2.25fr */
.months {
    display: grid;
    grid-template-columns: 2.25fr repeat(12, 1fr);
    padding: 14px 22px;
    background: #dfe2e6;
    border-bottom: 1px solid #bbb;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.member-header {
    text-align: left;
}

/* ÜST BİLGİ — ferah */
.top-info {
    display: flex;
    justify-content: space-between;
    padding: 12px 22px;
    background: #f4f5f6;
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    color: #444;
}

.page-indicator {
    font-weight: 700;
}

/* TABLO — tam 12 satır için optimize */
.table-container {
    height: calc(100vh - 105px - 62px - 60px - 70px);
    padding: 20px 22px;
    overflow: hidden;
}

/* SATIRLAR — 12 satır + premium görünüm */
.row {
    display: grid;
    grid-template-columns: 2.25fr repeat(12, 1fr);
    background: #ffffff;
    padding: 18px 16px;
    margin-bottom: 16px;
    font-size: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-items: center;
}

.name {
    font-weight: 700;
    text-align: left;
}

/* ICONS */
.status-ok {
    font-size: 26px;
    font-weight: 900;
    color: #27ae60;
}

.status-no {
    font-size: 26px;
    font-weight: 900;
    color: #e74c3c;
}

/* FOOTER — TEK SATIR + OVERSCAN SAFE */
.footer {
    background: #dcdfe3;
    padding: 18px 20px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    border-top: 1px solid #bbb;
}

.footer a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dashboard-logo {
    height: 56px;
    width: auto;
}

.dashboard-title h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.dashboard-title p {
    margin: 4px 0;
    color: #555;
}
