/* ============================================
   NOTIFICATIONS
   ============================================ */

.wpt-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: top 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.wpt-notification.show {
    top: 24px;
}

.wpt-notification-success {
    border-left: 4px solid #146AFF;
    color: #2e7d32;
}

.wpt-notification-error {
    border-left: 4px solid #f44336;
    color: #d32f2f;
}

.wpt-notification-info {
    border-left: 4px solid #146AFF;
    color: #1565c0;
}