/**
 * Notification styles for FBS Activity Tracker Plugin
 * 
 * @package FBS_Activity_Tracker
 * @since 1.0.0
 */

.fbs-at-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fbs-at-slide-in 0.3s ease-out;
}

.fbs-at-notification-success {
    background: #2a9d8f;
    color: white;
}

.fbs-at-notification-error {
    background: #e63946;
    color: white;
}

.fbs-at-notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.fbs-at-notification-message {
    flex: 1;
    margin-right: 1rem;
}

.fbs-at-notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fbs-at-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
