/**
 * Bahis Kuponu Eklentisi - Ana Stil Dosyası
 * Versiyon: 2.0 (Stabilize Edilmiş)
 */

/* --- Ana Kupon Konteyneri --- */
.bke-kupon-container-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 450px;
    margin: 20px auto;
}

.bke-kupon-container {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
}

.bke-kupon-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* --- Kupon Başlığı --- */
.bke-header {
    background-color: var(--kupon-bg-color, #4CAF50);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
}

.bke-title {
    font-size: 16px;
    font-weight: 600;
}

.bke-icon {
    font-size: 24px;
    line-height: 1;
}

/* --- Kupon İçeriği (Maçlar) --- */
.bke-body {
    padding: 8px 18px;
}

.bke-mac {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bke-mac:last-child {
    border-bottom: none;
}

/* --- Maç Satırları ve Sütunları (YENİ DÜZEN) --- */

/* 1. Satır: Sadece Takımlar */
.bke-mac-satir-1 {
    margin-bottom: 8px;
}

.bke-takimlar {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

/* 2. Satır: Detaylar ve Oran */
.bke-mac-satir-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bke-mac-detay {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px; /* Elemanlar arası boşluk */
}

.bke-tarih {
    font-size: 12px;
    color: #777;
}

.bke-bahis-turu {
    font-size: 13px;
    color: #555;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 6px;
}

.bke-mac-oran {
    background-color: #f0f2f5;
    color: #1c1e21;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

/* Maç Eklenmemiş Durumu */
.bke-mac-yok {
    padding: 20px;
    text-align: center;
    color: #888;
}


/* --- Kupon Alt Bilgisi (Footer) --- */
.bke-footer {
    background-color: #f7f7f7;
    border-top: 1px solid #e5e5e5;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bke-toplam-oran-baslik {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.bke-toplam-oran-deger {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

