﻿/* ============================================
    Notifications
   ============================================ */

.ui-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    min-width: 300px;
    max-width: 500px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

    .ui-notification.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

.ui-notification-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ui-notification-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.ui-notification-error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.ui-notification-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}


.btn.btn-group-fp {
    background: none;
    border-color: #218be0;
    color: #499adb;
    border-width: 1px;
}

    .btn.btn-group-fp:not(:disabled):not(.disabled):hover {
        background: #218be0;
        border-color: #218be0;
        color: white;
    }

    .btn.btn-group-fp:not(:disabled):not(.disabled):focus,
    .btn.btn-group-fp:not(:disabled):not(.disabled):active {
        background: #21547d;
        border-color: #21547d;
        color: white;
    }

    .btn.btn-group-fp:not(:disabled):not(.disabled):focus {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(63, 114, 155, 0.4);
        -moz-box-shadow: 0 0 0 0.2rem rgba(63, 114, 155, 0.4);
        box-shadow: 0 0 0 0.2rem rgba(63, 114, 155, 0.4);
    }

    .btn.btn-group-fp.btn-pulse:not(:disabled):not(.disabled) {
        -webkit-box-shadow: 0 0 0 0 rgba(63, 114, 155, 0.9) !important;
        -moz-box-shadow: 0 0 0 0 rgba(63, 114, 155, 0.9) !important;
        box-shadow: 0 0 0 0 rgba(63, 114, 155, 0.9) !important;
        -webkit-animation: pulse 1.5s infinite !important;
    }

    .btn.btn-group-fp:hover {
        -webkit-animation: none;
    }

.btn-group-fp.active-group {
    background: #5867de !important; 
    border-color: #5867de !important;
    color: white !important;
}