.universal-pay-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-out;
    top: auto;
}
.admin-has-been-logged-in-as-a-user .universal-pay-notification{
    bottom: 120px;
}
.pay-notification-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    color: #495057;
    position: relative;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.notification-header i {
    font-size: 14px;
    margin-right: 6px;
    color: #6c757d;

}
.notification-header .fa.fa-exclamation-circle{
    position: absolute;
    left: 0;
    top: 23px;
}

.notification-title {
    font-weight: 600;
    font-size: 13px;
    flex-grow: 1;
    color: #495057;
    display: none;
}

.close-notification {
    background: none;
    border: 1px solid #008884;
    color: #6c757d;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 20px;
    padding: 11px !important;
}

.close-notification:hover {
    background-color: #e9ecef;
    color: #495057;
}

.close-notification i {
    font-size: 16px !important;
    margin: 0 !important;
}

.notification-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 0 0;
}

.notification-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    flex: 1;
    min-width: 250px;
    color: #6c757d;
}

.notification-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.complete-payment-btn {
    background: #008884;
    color: white !important;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    border: none;
}
.fa.fa-credit-card{
    margin-top: -2px;
}

.complete-payment-btn:hover {
    background: #008884;
    color: white !important;
}

.view-orders-btn {
    background: transparent;
    color: #6c757d !important;
    padding: 6px 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 11px;
    transition: all 0.2s ease;
}

.view-orders-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057 !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .pay-notification-content{
        padding: 8px 10px 8px 40px;
    }
    .notification-header .fa.fa-exclamation-circle {
        position: absolute;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .complete-payment-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .view-orders-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    .notification-message {
        font-size: 13px;
        min-width: auto;
    }
    
    .notification-title {
        font-size: 12px;
    }
    
    .close-notification {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .close-notification i {
        font-size: 8px !important;
    }
}
@media (max-width: 600px) {
    .notification-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0;
    }
    .notification-actions {
        width: 100%;
        justify-content: center;
    }
}
/* Ensure the notification doesn't interfere with admin bar */


/* Add this to your existing CSS */
.view-orders-btn.primary {
    background: #008884;
    color: white !important;
    border: 1px solid #008884;
    font-weight: 500;
}

.view-orders-btn.primary:hover {
    background: #008884;
    border-color: #008884;
    color: white !important;
}

.view-orders-btn.primary i {
    margin-right: 4px;
}