
/* Уведомления для сохраенных постов  */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    align-items: center;
    gap: 0.8rem;

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    padding: 1rem 1.5rem;
    border-radius: 12px;

    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Типы уведомлений */
.notification-success {
    border: 2px solid #00ff88;
    color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.notification-info {
    border: 2px solid #00ccdd;
    color: #00ccdd;
    box-shadow: 0 10px 30px rgba(0, 204, 221, 0.3);
}

.notification-warning {
    border: 2px solid #ffaa00;
    color: #ffaa00;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
}

.notification-error {
    border: 2px solid #ff4444;
    color: #ff4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.notification-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.notification-message {
    line-height: 1.4;
}

/* Адаптивность для уведомлений */
@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .notification-icon {
        font-size: 1.1rem;
    }
}
