.bg-gray-60 {
    background-color: #1b2124;
}

.border-line-13 {
    border-color: #454f57 !important;
}

.border-bottom {
    /*border-bottom: 1px solid #dee2e6 !important;*/
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: transparent !important;
}

tbody {
    background-color: #303841 !important;
    color: white !important;
}

/* Swiper.js için özel stiller */
.swiper {
    width: 100%;
    padding: 20px 0;
    overflow: visible;
}

.swiper-wrapper {
    padding-left: 10px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.vip-column-table {
    width: 100%;
    max-width: 350px;
    background: #303841;
    border: 1px solid #454f57;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.vip-card-header {
    background: #1b2124;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #454f57;
}

.vip-card-header img {
    border-radius: 10px;
    flex-shrink: 0;
}

.vip-card-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.vip-column-table table {
    width: 100%;
    border-collapse: collapse;
}

.vip-column-table td {
    border-bottom: 1px solid #454f57;
    padding: 12px 15px;
    font-size: 14px;
    vertical-align: middle;
}

.vip-column-table td.vip-label {
    color: #a3acb3;
    text-align: left;
    width: 60%;
    font-weight: 500;
}

.vip-column-table td.vip-value {
    color: white;
    text-align: right;
    width: 40%;
    font-weight: 600;
}

.vip-column-table tr:last-child td {
    border-bottom: none;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #a3acb3;
    background: rgba(27, 33, 36, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: white;
    background: rgba(27, 33, 36, 0.9);
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #454f57;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #a3acb3;
    opacity: 1;
}

/* Mobilde geçerli olacak */
@media (max-width: 768px) {
    /* Sayfa genelinde yatay scroll'u engelle */
    body {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }

    .swiper {
        padding: 20px 0;
        overflow: visible;
    }

    .swiper-wrapper {
        padding-left: 10px;
    }

    .vip-column-table {
        max-width: 100%;
        margin: 0;
    }

    /* Orijinal büyük tabloyu mobilde gizle */
    .original-table {
        display: none;
    }

    /* Mobilde tablo container'ı gizle */
    .table-desktop-container {
        display: none !important;
    }

    /* Mobil slider başlığı */
    .mobile-table-title {
        display: block;
        text-align: center;
        margin: 30px 0 20px 0;
        color: white;
        font-size: 18px;
        font-weight: 600;
    }
}

/* Desktop'ta mobil slider'ı gizle */
@media (min-width: 769px) {
    .swiper {
        display: none;
    }
    
    .mobile-table-title {
        display: none;
    }
}