/* تعریف فونت ایران یکان */
@import url('https://cdn.fontcdn.ir/Font/Persian/Yekan/IRANYekanWebRegular.css');

/* استایل контейнер اسلایدر */
.arz-digital-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* استایل کارت هر ارز */
.arz-digital-slide {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px; /* افزایش ارتفاع برای جا دادن نمودار */
}

.arz-digital-slide:hover {
    transform: scale(1.05);
    background-color: #2f4f4f;
}

.arz-digital-slide:hover h3,
.arz-digital-slide:hover p {
    color: #fff;
}

.arz-digital-slide img {
    width: 32px;
    height: 32px;
}

.arz-digital-slide h3 {
    margin: 10px 0;
    font-size: 14px;
    font-family: 'IRANYekan', sans-serif;
}

.arz-digital-slide p {
    font-size: 12px;
    color: #333;
    font-family: 'IRANYekan', sans-serif;
    margin: 5px 0;
}

.chart-container {
    width: 100%;
    height: 80px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.chart-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* مخفی کردن نقطه‌های pagination */
.swiper-pagination {
    display: none;
}

/* استایل مدال پاپ‌آپ (که حالا استفاده نمی‌شه) */
.arz-digital-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.arz-digital-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
}

.arz-digital-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.arz-digital-close:hover,
.arz-digital-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#arz-digital-chart iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* استایل ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .arz-digital-slide {
        height: 200px;
    }
    
    .chart-container {
        height: 70px;
    }
}