/**
 * Toast Notification Styles
 * Bildirim sistemi için CSS
 *
 * @package HaberPro
 */

.haberpro-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 600;
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.haberpro-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .haberpro-toast {
        right: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
        font-size: 13px;
        padding: 14px 20px;
    }
}

