@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

/* GENEL SAYFA AYARLARI */
body {
    background-color: #eef2f5;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
}

.main-container {
    max-width: 800px;
    margin: 0 auto;
}

/* EKRANDA GÖRÜNEN KART KAPSAYICISI */
.ticket-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* --- SINAV GİRİŞ KARTI TASARIMI (ASIL KISIM) --- */
.exam-card {
    width: 105mm;  /* A6 Genişliği */
    height: 148mm; /* A6 Yüksekliği */
    background: #fff;
    border: 2px solid #891357; /* Kesim hattı */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    /* Arka plan deseni */
    background-image: radial-gradient(#891357 0.5px, transparent 0.5px), radial-gradient(#891357 0.5px, #ffffff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-color: #ffffff;
}

/* Kart İçeriği Temizleme (Desenin üstüne beyaz katman) */
.card-content {
    position: absolute;
    top: 5mm;
    left: 5mm;
    right: 5mm;
    bottom: 5mm;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Kart Başlığı */
.card-header {
    background-color: #891357;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    border-bottom: 3px solid #ffd700; /* Altın rengi çizgi */
}

.card-header h2 {
    margin: 0;
    font-size: 16pt;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header span {
    font-size: 8pt;
    opacity: 0.9;
}

/* Kart Gövdesi */
.card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bilgi Satırları */
.info-row {
    margin-bottom: 12px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
}

.info-label {
    font-size: 7pt;
    color: #891357;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.info-val {
    font-size: 11pt;
    color: #000;
    font-weight: 600;
    display: block;
}

/* Özel Tarih Kutusu */
.date-box {
    background: #448913;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

.date-box .time {
    font-size: 14pt;
    font-weight: 800;
}

/* Alt Kısım */
.card-footer {
    text-align: center;
    padding: 10px;
    border-top: 2px solid #eee;
    font-size: 7pt;
    color: #555;
}

.qr-area {
    position: absolute;
    bottom: 55px;
    right: 20px;
    opacity: 0.8;
}

/* --- YAZDIRMA (PRINT) AYARLARI --- */
@media print {
    @page {
        size: A4;
        margin: 0;
    }
    body {
        margin: 0;
        padding: 0;
        background: #fff;
        -webkit-print-color-adjust: exact; /* Renkleri zorla bas */
        print-color-adjust: exact;
    }
    .main-container, .no-print {
        display: none !important;
    }
    .ticket-wrapper {
        display: block;
        margin: 0;
        position: absolute;
        top: 10mm;
        left: 10mm;
    }
    .exam-card {
        box-shadow: none; /* Yazıcıda gölge istemiyoruz */
        border: 2px solid #000; /* Yazıcıda net sınır */
    }
}