#customToastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-toast {
    pointer-events: auto;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    min-width: 260px;
    max-width: 360px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateX(30px);
    animation: toast-in 0.2s ease-out forwards, toast-out 0.2s ease-in 4.5s forwards;
}

.toast-info {
    background: #1976d2;
}

.toast-success {
    background: #2e7d32;
}

.toast-warning {
    background: #f9a825;
}

.toast-error {
    background: #c62828;
}

.custom-toast-title {
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}
/* Sabit panel */
.live-message-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    max-height: 500px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    padding: 0;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 99999;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

    /* Başlık */
    .live-message-panel .live-header {
        padding: 10px 15px;
        background: rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

#livePanelClose {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.live-body {
    overflow-y: auto;
    max-height: 450px;
    padding: 10px 15px;
}

/* Tek tek log mesajları */
.live-msg {
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
}

/* Renkler */
.live-info {
    background: #2196F3;
}

.live-success {
    background: #4CAF50;
}

.live-warning {
    background: #FFC107;
    color: black;
}

.live-error {
    background: #F44336;
}
