.erdal-kasa-tip-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    min-height: 36px;
    background: linear-gradient(to right, #f9f9f9, #e0f1f5); /* Hafif mavi-gri ton geçişli */
    border: 1px solid #ccd6dd;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    white-space: nowrap;
    user-select: none;
    line-height: 1;
    box-sizing: border-box;
}

/* Hover efekti – pastel mavi ile uyumlu */
.erdal-kasa-tip-item:hover {
    background-color: #cdeefa;
    border-color: #42a5f5;
    color: #0b3954;
}

/* Seçili (aktif) item – net ama temayla uyumlu mavi ton */
.erdal-kasa-tip-item.active {
    background-color: #359bb2 !important;
    border-color: #359bb2 !important;
    color: #000000 !important;
    font-weight: 600;
}

/* Aktif item hover olduğunda renk solmasın, sabit kalsın */
.erdal-kasa-tip-item.active:hover {
    background-color: #359bb2 !important;
    border-color: #359bb2 !important;
    color: #ffffff !important;
}

/* Radyo butonları gizli */
.erdal-kasa-tip-item input[type="radio"] {
    display: none;
}

/* Mobil görünüm için uyumlu yapı */
@media (max-width: 768px) {
    .erdal-kasa-tip-item {
        font-size: 13px;
        padding: 5px 12px;
    }
}


@media (max-width: 768px) {
    .erdal-kasa-tip-item {
        font-size: 13px;
        padding: 5px 12px;
    }
}

/* Küçük görsel */
.erdal-kasa-tip-preview-img {
    width: 75px;
    height: auto;
    border-radius: 4px;
    cursor: zoom-in;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.erdal-kasa-tip-preview-img:hover {
    transform: scale(1.05);
}

/* Modal */
.erdal-kasa-tip-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.erdal-kasa-tip-modal-content {
    position: relative;
    margin: auto;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    max-width: 320px;
    max-height: 80%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.erdal-kasa-tip-modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.erdal-kasa-tip-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
