/* 
 * Notification Styles - Bootbox Integration
 * 
 * Note: Most styling is handled by Bootbox.
 * This file contains only minimal custom styles for notification-specific features.
 */

/* Custom icon styling for notification messages */
.bootbox .notification-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.bootbox .notification-icon svg {
    color: #0d6efd;
}

/* Ensure notification message text is readable and centered */
.bootbox .modal-body p {
    line-height: 1.6;
    color: #212529;
}

/* Wrap text in notification popup */
.bootbox .modal-title,
.bootbox .modal-body p {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}