/* Temel form stilleri */
.step {
    display: none;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
    margin-bottom: 20px;
}

.step.active {
    display: block;
    animation: AdimGirisEfekti 0.4s ease-out;
}

/* Adım Giriş ve Vurgu Animasyonları */
@keyframes AdimGirisEfekti {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes BaslikVurguEfekti {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.08);
        color: #0d6efd;
        text-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.04);
        color: #0d6efd;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes AdimArkaplanVurguEfekti {
    0% {
        background-color: #fff;
    }

    30% {
        background-color: #f0f7ff;
        box-shadow: 0 0 25px rgba(13, 110, 253, 0.15);
    }

    100% {
        background-color: #fff;
    }
}

.AdimVurgu {
    animation: AdimArkaplanVurguEfekti 1.2s ease-out;
}

.BaslikVurgu {
    display: inline-flex !important;
    animation: BaslikVurguEfekti 1s ease-in-out;
}

/* Başvuran Bilgileri Adımı İçin Özel Rozet */
.AdimRozet {
    background: linear-gradient(135deg, #0d6efd, #004fb1);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(13, 110, 253, 0.3);
    vertical-align: middle;
}

/* Adımlar için stiller */
.steps-container {
    position: relative;
    padding: 20px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-title {
    color: #6c757d;
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.step-item.active .step-title {
    color: #0d6efd;
    font-weight: 600;
}

.step-item.completed .step-circle {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.step-item.completed .step-title {
    color: #198754;
}

/* Progress bar stilleri */
.progress {
    height: 4px;
    background-color: #dee2e6;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 50px;
    z-index: 1;
}

.progress-bar {
    background-color: #0d6efd;
    transition: width 0.5s ease;
}

/* Hisse butonları */
.hisse-button {
    width: max-content;
    min-height: 5rem;
    margin: 10px 2px 10px 0;
    font-size: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hisse-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Form alanları */
.form-label {

    margin-bottom: 0;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Validasyon stilleri */
.input-error {
    border-color: #dc3545 !important;
}

.input-success {
    border-color: #198754 !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control:focus.input-error {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control:focus.input-success {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* -------------------------------------------------------
   FORM ADI ÜST BANT
   Tüm adımlarda görünen, formun adını gösteren küçük bant
   ------------------------------------------------------- */
.FormAdiBant {
    background: none;
    border-bottom: none;
    padding: 0;
    margin-bottom: 2px;
}

.FormAdiBantEtiket {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    /* Çok daha soluk, ikincil bilgi rengi */
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.FormAdiBantEtiket .bx {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* -------------------------------------------------------
   ADIM BAŞLIKLARI (.AdimBaslik)
   Her adım içindeki h2 başlığı: büyük, belirgin, ikonlu
   ------------------------------------------------------- */
.AdimBaslik {
    font-size: 1.25rem;
    font-weight: 600;
    color: #5a7184;
    /* Daha soluk ve kurumsal bir çelik mavisi */
    margin-bottom: 15px;
    padding: 10px 0 10px;
    border-bottom: 2px solid #f0f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.AdimIkon {
    font-size: 1.4rem;
    color: #a0aec0;
    /* İkon rengi de başlığa uyumlu şekilde soluklaştırıldı */
    flex-shrink: 0;
}


.AdimAciklama {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}


.AdimAciklama i {
    font-size: 1.1rem;
    color: #0d6efd;
}

/* Adım 3'e Özel Renk Teması (Farkındalık için) */
.BasvuranAdimTema .AdimBaslik {
    color: #407c32 !important;
    border-bottom-color: #407c3233 !important;
}

.BasvuranAdimTema .AdimIkon {
    color: #407c32 !important;
}

.BasvuranAdimTema .form-label {
    color: #407c32 !important;
    font-weight: 600;
}

.BasvuranAdimTema .AdimAciklama i {
    color: #407c32 !important;
}

/* Disabled butonlar görsel geri bildirim */
.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Butonlar */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: max-content;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Modal stilleri */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid #eee;
    padding: 20px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 2px solid #eee;
    padding: 20px;
}

.copy-button:active {
    transform: scale(0.98);
}

/* Toplam Tutar kartı için stiller */
.total-amount-card {
    background: linear-gradient(135deg, #0d6efd70, #003f9b);
    border-radius: 15px;
    padding: 20px 30px;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.total-amount-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.amount-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.amount-value {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.amount-value .currency {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Animasyon ekleyelim */
@keyframes countAnimation {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

/* JavaScript'te toplam tutar güncellendiğinde animasyon için */
.amount-update {
    animation: countAnimation 0.3s ease-out;
}

/* Kurban türü seçimi */
.kurban-turu-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;

    width: 100%;
    overflow-x: auto;
}

.kurban-turu-card {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    padding: 18px 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    background: #fff;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kurban-turu-card .kurban-radio {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.kurban-turu-card .bx {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.kurban-turu-card input[type="radio"]:checked~span,
.kurban-turu-card input[type="radio"]:checked~div {
    color: #0d6efd;
    font-weight: bold;
}

.kurban-turu-card input[type="radio"]:checked~.bx {
    color: #0d6efd;
}

.kurban-turu-card input[type="radio"]:checked~span,
.kurban-turu-card input[type="radio"]:checked~div {
    color: #0d6efd;
}

.kurban-turu-card:hover {
    border-color: #0d6efd;
    background: #e7f1ff;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
}

.KurbanTurBaslik {
    line-height: 15px;
    margin-top: 15px;
}

.KurbanTurAciklama {
    display: none;
    font-size: 0.72rem;
    font-weight: 400 !important;
    /* Kalın olmaması için */
    color: #64748b;
    margin-top: 4px;
    line-height: 1.3;
}

.kurban-radio:checked~.KurbanTurBaslik .KurbanTurAciklama {
    display: block;
}



/* Modern Checkbox */
.form-check-input {
    width: 1.5em;
    height: 1.5em;
    border-radius: 0.35em;
    border: 2px solid #0d6efd;
    background-color: #f8f9fa;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.07);
    margin-top: 0.2em;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .15);
}

.form-check-input:focus {
    border-color: #0a58ca;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .15);
}

.form-check-label {
    font-size: 1.08rem;
    font-weight: 500;
    color: #222;
    margin-left: 0.5em;
    cursor: pointer;
    user-select: none;
}

.kurban-radio {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.kurban-turu-card {
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.kurban-turu-card input:checked+i,
.kurban-turu-card input:checked+span {
    color: #0d6efd;
    font-weight: bold;
}

/* SweetAlert Bootstrap Stil */
.swal-bootstrap {
    max-width: 500px !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.swal-bootstrap .swal2-html-container {
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.swal-title-bootstrap {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #495057 !important;
}

/* Bootstrap Alert özelleştirmeleri */
.swal-bootstrap .alert {
    border-radius: 0.375rem !important;
    padding: 0.75rem 1rem !important;
    margin-bottom: 1rem !important;
    border: 1px solid transparent !important;
}

.swal-bootstrap .alert-warning {
    color: #664d03 !important;
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
}

.swal-bootstrap .alert-info {
    color: #055160 !important;
    background-color: #cff4fc !important;
    border-color: #b6effb !important;
}

/* List Group özelleştirmeleri */
.swal-bootstrap .list-group-item {
    border: 1px solid rgba(0, 0, 0, 0.125) !important;
    padding: 0.75rem 1rem !important;
    background-color: #fff !important;
    border-radius: 0 !important;
}

.swal-bootstrap .list-group-item:first-child {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.swal-bootstrap .list-group-item:last-child {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.swal-bootstrap .list-group-item:hover {
    background-color: #f8f9fa !important;
}

/* Badge özelleştirmeleri */
.swal-bootstrap .badge {
    font-size: 0.75em !important;
    font-weight: 600 !important;
    padding: 0.35em 0.65em !important;
}

/* Buton özelleştirmeleri */
.swal-bootstrap .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    border-radius: 0.375rem !important;
    font-weight: 500 !important;
    margin: 0 0.25rem !important;
}

.swal-bootstrap .btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}



/* -------------------------------------------------------
   BAŞARILI KAYIT MESAJI KARTI
   Form kaydı başarılı olduğunda gösterilen ekran
   ------------------------------------------------------- */

/* Animasyon: İkon giriş efekti */
@keyframes BasariIkonGiris {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.15) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Animasyon: Kart yukarı kayarak giriş */
@keyframes BasariKartGiris {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animasyon: İkon halka titreşimi */
@keyframes BasariHalkaTitresim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(25, 135, 84, 0);
    }
}

.KayitBasariAlani {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    padding: 30px 15px;
}

.KayitBasariKart {
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow:
        0 10px 40px rgba(25, 135, 84, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(25, 135, 84, 0.15);
    animation: BasariKartGiris 0.5s ease-out both;
}

.KayitBasariIkonAlani {
    margin-bottom: 20px;
}

.KayitBasariIkon {
    font-size: 5rem;
    color: #198754;
    display: inline-block;
    animation:
        BasariIkonGiris 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
        BasariHalkaTitresim 2s ease-in-out 1s infinite;
    background: linear-gradient(135deg, #d1fae5, #bbf7d0);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(25, 135, 84, 0.15);
}

.KayitBasariBaslik {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.KayitBasariAciklama {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.KayitBasariButonlar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.KayitBasariBtn {
    min-width: 180px;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

.KayitBasariBtn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

.KayitBasariBtn#YeniKayitBtn {
    background: linear-gradient(135deg, #198754, #157347);
    border: none;
    color: #fff;
}

.KayitBasariBtn#YeniKayitBtn:hover {
    background: linear-gradient(135deg, #157347, #0f5c38);
}

.KayitBasariBtn#AnasayfaBtn {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
    color: #fff;
}

.KayitBasariBtn#AnasayfaBtn:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
}



/* ---------------------------------------------------
   VEKALET RADIO BUTONU - DALGA (RIPPLE) EFEKTİ
   Kullanıcının dikkatini çekmek için yayılan dalga animasyonu
   --------------------------------------------------- */

/* Dalga animasyonu tanımı */
@keyframes VekaletDalgaYayilim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Sarmalayıcı: radio butonunu ve dalga katmanlarını konumlar */
.VekaletRadioSarmal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-top: 10px;
}

/* Radio buton: varsayılan görünüm (büyütülmüş) */
.VekaletRadioInput {
    width: 2.5em !important;
    height: 2.5em !important;
    border: 3px solid #dc3545 !important;
    background-color: #fff3f3 !important;
    cursor: pointer;
    z-index: 2;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.25) !important;
    margin-left: 0 !important;
    float: none !important;
}

/* Radio buton seçildiğinde: yeşil onay görünümü */
.VekaletRadioInput:checked {
    border-color: #198754 !important;
    background-color: #198754 !important;
    box-shadow: 0 0 20px rgba(25, 135, 84, 0.35) !important;
    transform: scale(1.1);
}

/* Dalga efekti katmanları - Radio'nun arkasında yayılan halkalar */
.VekaletDalgaEfekt {
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: 2px solid #dc3545;
    animation: VekaletDalgaYayilim 2s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* İkinci dalga katmanı: gecikme ile farklı zamanlama */
.VekaletDalgaEfekt2 {
    animation-delay: 0.6s;
}

/* Üçüncü dalga katmanı: daha fazla gecikme */
.VekaletDalgaEfekt3 {
    animation-delay: 1.2s;
}

/* Radio seçildiğinde dalga animasyonunu durdur */
.VekaletRadioInput:checked~.VekaletDalgaEfekt {
    animation: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* -------------------------------------------------------
   DÖNEM / FORM KAPALI UYARI KARTI
   Kayıt dönemi kapalı veya arşivlendiğinde gösterilen ekran
   ------------------------------------------------------- */

.DonemKapaliAlani {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 15px;
}

.DonemKapaliKart {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: BasariKartGiris 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    overflow: hidden;
}

/* Renk Teması */
.DonemKapaliKilitli {
    border-top: 6px solid #dc3545;
    background: linear-gradient(145deg, #ffffff, #fff5f5);
}

.DonemKapaliIkonAlani {
    margin-bottom: 25px;
}

.DonemKapaliIkon {
    font-size: 4.5rem;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Temaya özel ikon renkleri */
.DonemKapaliKilitli .DonemKapaliIkon {
    color: #dc3545;
    background: #ffebeb;
}

.DonemKapaliBaslik {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.DonemKapaliKilitli .DonemKapaliBaslik {
    color: #921925;
}

.DonemKapaliDonemAdi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.04);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 20px;
}

.DonemKapaliAciklama {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}

.DonemKapaliButonlar {
    display: flex;
    justify-content: center;
}

.DonemKapaliBtn {
    min-width: 220px;
    padding: 15px 35px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2) !important;
}

/* Başarı Kartı İçindeki Uyarı Notu */
.KayitBasariNotu {
  background: #fff9db;
  border: 1px solid #ffe066;
  border-left: 5px solid #fcc419;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  text-align: left;
  font-size: 0.95rem;
  color: #856404;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(252, 196, 25, 0.1);
  animation: AdimGirisEfekti 0.6s ease-out 0.4s both;
}

.KayitBasariNotu p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.KayitBasariNotu p:last-of-type {
  margin-bottom: 0;
}

.KayitBasariNotu strong {
  color: #744210;
}

.KayitBasariNotu i {
  font-size: 1.2rem;
  color: #fcc419;
  margin-top: 2px;
}

.KayitBasariNotuVurgu {
  color: #c92a2a;
  font-weight: 700;
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  background: rgba(201, 42, 42, 0.05);
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed rgba(201, 42, 42, 0.2);
}

.KayitBasariNotuVurgu i {
  color: #c92a2a;
}

