/**
 * Message Center Styles
 */

/* Toast notification container */
#message-notification-container {
    z-index: 9999;
    max-width: 400px;
}

/* Message notification styling */
.message-notification {
    min-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0d6efd;
}

.message-notification .toast-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.message-notification .toast-header i {
    color: #0d6efd;
}

.message-notification .toast-body {
    padding: 1rem;
}

/* Action buttons */
.message-action-btn {
    white-space: nowrap;
}

.message-dismiss-btn {
    white-space: nowrap;
}

/* Connection error alert */
.message-center-error {
    max-width: 500px;
    margin: 0 auto;
}

/* Animation for new notifications */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.message-notification.show {
    animation: slideInRight 0.3s ease-out;
}
