﻿ 
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Poppins';
    background-color: #f4f6fa;
    color: #1f2a44;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("https://cdn.nkolayislem.com.tr/NKbackgroundimage.svg");
}
 
    

/* Header Alanı */
header {
    width: 100%;
    padding: 20px 40px;
    background: transparent;
    position: relative;
    z-index: 1;
}

 
/* Ana İçerik Alanı */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

/* Makbuz Kartı */
.receipt-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 480px;
    padding: 35px 30px;
    text-align: center;
}

/* Başarı İkonu */
.success-icon {
    width: 56px;
    height: 56px;
     
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #0052cc;
    font-size: 24px;
}

.success-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* Tutar Detay Alanı */
.amount-box {
    background-color: #fafbfc;
    border: 1px solid #eef0f4;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.amount-label {
    font-size: 12px;
    color: #7a869a;
    margin-bottom: 8px;
    font-weight: 500;
}

.amount-value {
    font-size: 26px;
    font-weight: 700;
    color: #00875a;
    margin-bottom: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e3fcef;
    color: #006644;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    gap: 4px;
}

/* Bilgi Satırları */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f5;
    font-size: 13px;
}

.info-label {
    color: #7a869a;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

    .info-label i {
        color: #0052cc;
        font-size: 14px;
        width: 16px;
    }

.info-value {
    color: #172b4d;
    font-weight: 500;
}

/* SMS Bilgilendirme Kutusu */
.sms-notice {
    background-color: #f4f5f7;
    border-radius: 6px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
}

    .sms-notice i {
        color: #4c9aff;
        font-size: 20px;
        margin-top: 2px;
    }

.sms-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #172b4d;
    margin-bottom: 4px;
}

.sms-text p {
    font-size: 11px;
    color: #5e6c84;
    line-height: 1.4;
}

/* Buton */
.btn-view-receipt {
    display: block;
    width: 100%;
    background-color: #0052cc;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-view-receipt:hover {
        background-color: #0043a4;
    }
 

.footer-brands {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #97a0af;
}

    .footer-brands i {
        font-size: 18px;
    }


.page-header {
    padding: 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: #8a93a6;
    background-color: white;
    width: 100%;
}

.page-footer {
    padding: 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: #8a93a6;
    background-color: white;
    width: 100%;
    margin-top: auto;
}
.footer-brands {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-brands img {
        height: 16px;
    }

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-right img {
        height: 22px;
        width: auto;
        object-fit: contain;
    }
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    z-index: 1;
}