/*  
 *   Coin Tablosu - Ultra Modern Premium Bildirim Sistemi
 */

/* Bildirim Container */
.coin-notification-container {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 360px;
    z-index: 999999 !important;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.coin-notification {
    position: relative;
    margin-bottom: 16px;
    background: linear-gradient(125deg, #1a1e2b 0%, #232a3b 100%);
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: flex-start;
    padding: 20px;
    transform: translateX(120%) scale(0.95);
    transition: all 0.45s cubic-bezier(0.15, 1.15, 0.4, 1);
    opacity: 0;
    pointer-events: auto;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    text-transform: none;
    line-height: normal;
    letter-spacing: normal;
    z-index: 99999;
}

.coin-notification::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.12) 50%, 
        rgba(255, 255, 255, 0) 100%);
}

.coin-notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.coin-notification.hiding {
    transform: translateX(8%) scale(0.92);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.5, 0, 0, 1);
}

/* İkon Stilleri */
.coin-notification-icon {
    flex-shrink: 0;
    margin-right: 18px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coin-notification-icon::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    transition: all 0.3s ease;
}

.coin-notification-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

/* Tip Bazlı İkon/Arka Plan Stilleri */
.coin-notification.success {
    border-left: 5px solid #0cce6b;
}
.coin-notification.success .coin-notification-icon::before {
    background-color: #0cce6b;
}
.coin-notification.success .coin-notification-icon svg {
    color: #0cce6b;
}

.coin-notification.error {
    border-left: 5px solid #ff5252;
}
.coin-notification.error .coin-notification-icon::before {
    background-color: #ff5252;
}
.coin-notification.error .coin-notification-icon svg {
    color: #ff5252;
}

.coin-notification.warning {
    border-left: 5px solid #ffb142;
}
.coin-notification.warning .coin-notification-icon::before {
    background-color: #ffb142;
}
.coin-notification.warning .coin-notification-icon svg {
    color: #ffb142;
}

.coin-notification.info {
    border-left: 5px solid #2196f3;
}
.coin-notification.info .coin-notification-icon::before {
    background-color: #2196f3;
}
.coin-notification.info .coin-notification-icon svg {
    color: #2196f3;
}

/* Metin Alanı */
.coin-notification-text {
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
    margin-right: 20px;
    font-family: inherit;
    text-align: left;
    text-transform: none;
}

.coin-notification-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 17px;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: normal;
    text-transform: none;
}

.coin-notification-message {
    color: rgba(255, 255, 255, 0.85);
    font-weight: normal;
    white-space: normal;
    text-transform: none;
    line-height: 1.5;
}

/* Kapatma Butonu */
.coin-notification-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 6px;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.25s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.coin-notification-close:hover {
    opacity: 1;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.1);
}

.coin-notification-close svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke-width: 2.6;
}

/* Cryptocurrency table içindeki bildirimler için ek stiller */
.crypto-coin-table-wrap .coin-notification-container,
.crypto-promoted-table-wrap .coin-notification-container,
#crypto-coin-table-container .coin-notification-container {
    z-index: 999999 !important;
    position: fixed;
}

.crypto-coin-table-wrap .coin-notification,
.crypto-promoted-table-wrap .coin-notification,
#crypto-coin-table-container .coin-notification {
    background: linear-gradient(125deg, #1a1e2b 0%, #232a3b 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999999 !important;
}

/* "Vote failed" özel mesajı düzeltme */
.coin-notification.error[id*="notification"] .coin-notification-message:contains("Vote failed"),
.coin-notification.error[id*="notification"] .coin-notification-message:contains("Oy verme başarısız") {
    color: #ff5252;
    font-weight: 500;
}

/* Tip Bazlı Vurgu Efektleri (Gölgeler) */
.coin-notification.success {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -15px rgba(12, 206, 107, 0.15);
}

.coin-notification.error {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -15px rgba(255, 82, 82, 0.15);
}

.coin-notification.warning {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -15px rgba(255, 177, 66, 0.15);
}

.coin-notification.info {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px -15px rgba(33, 150, 243, 0.15);
}

/* Özel Animasyon Efektleri */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.coin-notification.show .coin-notification-icon {
    animation: pulse 1s ease-in-out;
}

/* Mobil için uyumluluk iyileştirmesi */
@media (max-width: 480px) {
    .coin-notification-container {
        top: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
        z-index: 999999 !important;
    }

    .coin-notification {
        padding: 18px;
        margin-bottom: 12px;
        border-radius: 8px;
        max-width: none;
    }

    .coin-notification-icon {
        margin-right: 14px;
        width: 24px;
        height: 24px;
    }

    .coin-notification-icon svg {
        width: 20px;
        height: 20px;
    }

    .coin-notification-title {
        font-size: 16px;
        letter-spacing: 0.1px;
    }
    
    .coin-notification-message {
        font-size: 14px;
    }

    .coin-notification-close {
        width: 18px;
        height: 18px;
        padding: 5px;
        top: 10px;
        right: 10px;
    }

    .coin-notification-close svg {
        width: 14px;
        height: 14px;
    }
}

/* Özel Karanlık Mod Uyumu */
@media (prefers-color-scheme: dark) {
    .coin-notification {
        background: linear-gradient(125deg, #121520 0%, #1e2433 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}
/*
force
update
*/
