
/* Genel stiller */
.profit { color: #007bff !important; font-weight: bold; } /* Mavi - Kâr, kalın */
.loss { color: #dc3545 !important; font-weight: bold; }   /* Kırmızı - Zarar, kalın */
.neutral { color: #000000 !important; font-weight: bold; } /* Siyah - Nötr, kalın */
.total-row { font-weight: bold; background-color: #e0e0e0; }
@media (max-width: 768px) {
    .hide-mobile { display: none; }
}

/* Kapalı sinyaller tablosu için sonuç sütunu stilleri */
.sonuc-basarili { color: #007bff !important; font-weight: bold; } /* Mavi - Başarılı */
.sonuc-basarisiz { color: #dc3545 !important; font-weight: bold; } /* Kırmızı - Başarısız */
.sonuc-erken-kapanma { color: #ffc107 !important; font-weight: bold; } /* Sarı - Erken Kapanma */

/* İstatistik kutuları için pastel renkler ve çerçeveler */
.stats-container {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.stats-item-1 { background-color: #d4e9ff; border: 1px solid #a3cfff; text-align: center; } /* Açık mavi */
.stats-item-2 { background-color: #ffe4e1; border: 1px solid #ffb3ae; text-align: center; } /* Açık pembe */
.stats-item-3 { background-color: #e6ffe6; border: 1px solid #b3ffb3; text-align: center; } /* Açık yeşil */
.stats-item-4 { background-color: #fff3cd; border: 1px solid #ffe066; text-align: center; } /* Açık sarı */
.stats-item-5 { background-color: #e0d4ff; border: 1px solid #b3a3ff; text-align: center; } /* Açık mor */
.stats-item-6 { background-color: #cce5ff; border: 1px solid #99ccff; text-align: center; } /* Daha açık mavi */
.stats-item-7 { background-color: #ffd4cc; border: 1px solid #ff9999; text-align: center; } /* Açık kırmızı */
.stats-item-8 { background-color: #d4f7e6; border: 1px solid #a3e6c2; text-align: center; } /* Mint yeşili */
.stats-item-9 { background-color: #f5d4ff; border: 1px solid #e6a3ff; text-align: center; } /* Açık leylak */
.stats-item-10 { background-color: #e6e6ff; border: 1px solid #b3b3ff; text-align: center; } /* Çok açık mor */
.stats-item-11 { background-color: #fff0cc; border: 1px solid #ffd966; text-align: center; } /* Açık altın sarısı */
.stats-item-12 { background-color: #d4f4ff; border: 1px solid #a3e1ff; text-align: center; } /* Açık turkuaz */

/* Güncel fiyat kutusu için stiller */
.price-box {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}
.price-item-1 { background-color: #f0e4ff; border: 1px solid #d1c4ff; } /* Açık lavanta */
.price-item-2 { background-color: #e6f7ff; border: 1px solid #b3e6ff; } /* Çok açık mavi */
.price-item-3 { background-color: #fff0f0; border: 1px solid #ffd1d1; } /* Açık kırmızımsı */
.price-item-4 { background-color: #f0fff0; border: 1px solid #d1ffd1; } /* Çok açık yeşil */
.price-item-5 { background-color: #fff5e6; border: 1px solid #ffe6b3; } /* Açık şeftali */
.price-item-6 { background-color: #e6f0ff; border: 1px solid #b3d1ff; } /* Açık gök mavisi */
.price-item-7 { background-color: #f7e6f0; border: 1px solid #e6b3d1; } /* Açık pembe-mor */
.price-item-8 { background-color: #e6ffe6; border: 1px solid #b3ffb3; } /* Parlak açık yeşil */
.price-item-9 { background-color: #fff0e6; border: 1px solid #ffd1b3; } /* Açık turuncumsu */
.price-item-10 { background-color: #e6f7e6; border: 1px solid #b3e6b3; } /* Açık nane yeşili */
.price-item-11 { background-color: #f0f7ff; border: 1px solid #d1e6ff; } /* Çok açık buz mavisi */
.price-item-12 { background-color: #ffe6f0; border: 1px solid #ffb3d1; } /* Açık pembe */

/* Pasta Grafiği (Pie Chart) Stilleri */
.pie-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}
.pie-chart {
    width: 100px;
    height: 100px;
}
.pie-chart-fill {
    animation: pulse 1.5s infinite ease-in-out;
}

/* Nabız (Pulse) Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1) rotate(-90deg);
        transform-origin: 50% 50%;
    }
    50% {
        transform: scale(1.1) rotate(-90deg);
        transform-origin: 50% 50%;
    }
    100% {
        transform: scale(1) rotate(-90deg);
        transform-origin: 50% 50%;
    }
}

/* Tablo ve başlıklar */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
}
thead {
    background-color: #f2f2f2;
    z-index: 1000;
}
th, td {
    padding: 8px;
    border: 1px solid #dee2e6;
    text-align: left;
}
.table-spacer {
    height: 40px;
}

/* Modal Stilleri */
.modal-content {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.modal-header {
    background-color: #f2f2f2;
    border-bottom: 1px solid #dee2e6;
}
.modal-body {
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
    padding: 0;
}
.modal-footer {
    border-top: 1px solid #dee2e6;
}
#signalDetailContent {
    margin: 0;
    padding: 10px;
    white-space: pre-wrap;
    font-size: 14px;
}

/* Body için arkaplan rengi ve taşma kontrolü */
html, body {
    background-color: #ffffff;
    top: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Container için taşma kontrolü */
html, body, .container-fluid { 
    height: auto !important; 
}

/* Header Stilleri */
.site-header {
    background-color: #191919;
    color: #ffffff;
    padding: 10px 0;
    width: 100%;
    margin: 0;
}
.header-title {
    margin: 0;
    font-size: 1.5rem;
}
.header-logo {
    max-height: 40px;
}
.header-nav .nav-link {
    color: #ffffff;
    padding: 10px 15px;
}
.header-nav .nav-link:hover {
    color: #d4d4d4;
}
.right-menu {
    color: #ffffff;
    font-size: 1.1rem;
    margin-right: 20px;
}
.right-menu:hover {
    color: #d4d4d4;
    text-decoration: none;
}
.navbar-toggler {
    border-color: #ffffff;
    color: #ffffff;
    font-size: 2.0rem;
    display: block;
    background: none;
    padding: 0px 25px;
}
.navbar-toggler i {
    color: #ffffff;
}

/* Footer Stilleri */
.site-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 20px 0;
    width: 100%;
    margin: 0;
}
.site-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e5e5e5;
    font-weight: bold;
}
.site-footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .site-footer .col-12 {
        margin-bottom: 15px;
    }
}

/* Responsive Ayarları */
@media (max-width: 768px) {
    .site-header .row {
        align-items: center;
    }
    .header-title {
        font-size: 1.2rem;
    }
    .right-menu {
        font-size: 1rem;
        margin-right: -20px;
    }
    .navbar-collapse {
        background-color: #5a5a5a;
        padding: 10px;
    }
    .navbar-collapse.show {
        background-color: #333333;
        border-radius: 12px;
    }
    .navbar-collapse .nav-link {
        color: #ffffff;
        padding: 8px 15px;
        text-align: right;
    }
    .navbar-toggler {
        display: block !important;
    }
}

/* Google Çeviri barını gizle */
.goog-te-banner-frame {
    display: none !important;
}
.skiptranslate, .goog-te-gadget {
    display: none !important;
}

/* Sinyaller.php'den taşınan stiller */
#yukleniyorMesaji { 
    display: none; 
    text-align: center; 
    margin-top: 20px; 
    color: #6c757d; 
    font-weight: bold; 
}
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}
@keyframes spin { 
    to { transform: rotate(360deg); } 
}
.fade-in { 
    animation: fadeIn 0.5s ease-in; 
}
@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; }
}
.hidden { 
    display: none; 
}
.detay-btn { 
    cursor: pointer; 
    margin-left: 5px; 
}

/* Özel İlerleme Çubuğu Stilleri */
.custom-progress {
    width: 100%; /* Sabit genişlik yerine %100 */
    max-width: 400px; /* Maksimum genişlik sınırı */
    height: 25px;
    background-color: #e9ecef;
    border: 2px solid #6c757d;
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
}
.custom-progress-bar {
    background-color: #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    transition: width 0.6s ease;
}

/* Ziyaretçi İstatistikleri */
.stats-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 0px;
    color: #fff;
    font-size: 11pt;
    font-weight: normal;
}
.stats-row > span:first-child {
    flex: 0 0 auto;
}
.stats-row > span:nth-child(2) {
    flex: 1;
    border-bottom: 1px dotted #fff;
    margin: 0 5px;
}
.stats-row > span:last-child {
    flex: 0 0 auto;
    font-weight: normal;
}
.section-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.odeme-turu-title {
    color: #007bff;
}
.odeme-adresi-title {
    color: #28a745;
}
.onay-turu-title {
    color: #6f42c1;
}
.total-box {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}
#odeme_yap_buton {
    width: 100%;
    max-width: none;
}
@media (max-width: 767.98px) {
    .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

/* Kâr/Zarar yüzdesi stilleri */
.kar_durumu {
    color: #007bff;
    font-weight: bold;
    margin-left: 5px;
}
.zarar_durumu {
    color: #dc3545;
    font-weight: bold;
    margin-left: 5px;
}
.notr_durumu {
    color: #000000;
    font-weight: bold;
    margin-left: 5px;
}

/* Olasılık sütunu için stil */
#kapaliSinyallerTablosu th:nth-child(9),
#kapaliSinyallerTablosu td:nth-child(9) {
    text-align: center;
    vertical-align: middle;
}

/* Ana Sayfa Kutuları */
.ana-baslik-kutusu {
    background-color: #F7931A; /* Bitcoin turuncusu */
    border: 1px solid #e07b00;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333333; /* Koyu gri, okunabilirlik için */
    animation: slideInLeft 1s ease-out forwards;
    box-sizing: border-box; /* Genişlik hesaplamasına padding dahil edilir */
}

.hosgeldiniz-kutusu {
    background-color: #627EEA; /* Ethereum mavi-moru */
    border: 1px solid #4b5cc4;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF; /* Beyaz, okunabilirlik için */
    animation: slideInRight 1s ease-out forwards;
    box-sizing: border-box; /* Genişlik hesaplamasına padding dahil edilir */
}

/* Buton Stili */
.sinyaller-butonu {
    background-color: #A9B7F5; /* Açık mavi-mor, Ethereum temasına uyumlu */
    border: 1px solid #8796E0;
    color: #333333; /* Koyu gri, okunabilirlik için */
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sinyaller-butonu:hover {
    background-color: #8796E0; /* Daha koyu mavi-mor */
    color: #FFFFFF;
    transform: translateY(-2px);
}

.sinyaller-butonu:active {
    transform: translateY(0);
}

/* Kenarlara yakın hizalama için tam genişlik bölümü */
.tam-genislik-bolumu {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box; /* Genişlik hesaplamasına padding dahil edilir */
}

/* Animasyonlar */
@keyframes slideInLeft {
    from {
        transform: translateX(-50%); /* Daha hafif hareket */
        opacity: 0.5;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50%); /* Daha hafif hareket */
        opacity: 0.5;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* İlerleme Çubuğu Stilleri */
.custom-progress {
    height: 2rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    overflow: hidden;
}

.custom-progress-bar {
    background-color: #005fbf; /* Mavi, başarı oranı için */
    color: #fff;
    text-align: center;
    line-height: 1.5rem;
    transition: width 0.6s ease;
}

/* Başarı Oranı Bölümü */
.basari-orani-bolumu {
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center; /* Yatay ortalama */
    align-items: center; /* Dikey ortalama */
    text-align: center; /* Metinleri ortala */
}

/* Mevcut stiller korunuyor, sadece mobil animasyon ekleniyor */
@media (max-width: 768px) {
    .ana-baslik-kutusu, .hosgeldiniz-kutusu {
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
        margin-bottom: 20px;
        animation: fadeIn 1s ease-out forwards; /* Hafif opacity animasyonu */
    }

    .tam-genislik-bolumu {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sinyaller-butonu {
        width: 25%; /* Mobil cihazlarda buton tam genişlik */
        padding: 10px;
        font-size: 1.1rem;
    }

    .basari-orani-bolumu .progress {
        margin-top: 0.5rem; /* Mobil cihazlarda metin ve çubuk arasında boşluk */
    }
}

/* Masaüstü için taşma kontrolü */
@media (min-width: 769px) {
    .tam-genislik-bolumu {
        overflow-x: hidden; /* Sadece masaüstünde taşmayı engelle */
    }
    .ana-baslik-kutusu, .hosgeldiniz-kutusu {
        max-width: 100%; /* Kutuların taşmasını engelle */
        overflow-x: hidden; /* Animasyon sırasında taşmayı engelle */
    }
}

/* Ana Sayfa için dizayn */ 
.tam-genislik-bolumu {
    padding: 2rem 10;
}

.basari-orani-bolumu {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #005fbf;
    border: none;
}

.btn-primary:hover {
    background-color: #004a9f;
}

.bg-primary {
    background-color: #005fbf !important;
}

.custom-progress {
    height: 1.5rem;
    border-radius: 10px;
}

.custom-progress-bar {
    background-color: #28a745;
}

.hero-image {
    border-radius: 10px; /* Köşeleri yuvarlatır */
    border: 1px solid #e0e0e0; /* İnce, açık gri bir çerçeve */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Hafif gölge efekti */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover için geçiş efekti */
}

.hero-image:hover {
    transform: scale(1.01); /* Hover'da hafif büyüme */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Hover'da gölge artışı */
}

.hero-image-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Hafif degrade arka plan */
    border-radius: 20px; /* Daha büyük yuvarlaklık */
    padding: 15px; /* Resim ile arka plan arasında boşluk */
}