/* Koleksiyon Ana Kapsayıcı */
.asya-collections-wrapper {
    margin: 20px 0;
    font-family: sans-serif;
}

/* Sabit Liste Butonları */
.asya-collection-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.asya-col-btn {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* GÜNCELLENEN TASARIM: Kırmızı Zemin, Beyaz Yazı ve Yuvarlatılmış Köşeler */
.asya-col-btn.custom-add-trigger {
    background-color: #ff3b3b; /* İstediğin canlı kırmızı */
    color: #ffffff;           /* Beyaz yazı */
    border-radius: 12px;      /* Daha oval köşeler */
    padding: 12px 24px;       /* Daha geniş bir buton yapısı */
    font-size: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.asya-col-btn.custom-add-trigger:hover {
    background-color: #e62e2e;
    transform: translateY(-2px);
}

/* Aktif durumlar için */
.asya-col-btn.active {
    background-color: #333;
    color: #fff;
}

/* Modal Tasarımı */
.asya-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.asya-modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.asya-modal-content input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.asya-modal-content button {
    background-color: #ff3b3b;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
/* Modal Başlangıçta Gizli Olmalı */
#asya-custom-collection-modal {
    display: none; /* JavaScript açtığında 'flex' olacak */
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

/* Modal İçerik Kutusu */
.asya-modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    box-sizing: border-box;
}

.asya-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

.asya-modal-content input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.asya-modal-content button {
    background-color: #ff3b3b;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
/* Sabit liste butonlarının aktif (seçili) hali */
.asya-col-btn.active {
    background-color: #ff3b3b !important;
    color: #ffffff !important;
}