/*
 * RaiseFi Notifications CSS
 * 
 * PLACEHOLDER FILE - Replace with your working version from past build
 * 
 * @package RaiseFi
 * @version 3.0.0
 */

/* Notification System Styles - Basic placeholder structure */
.raisefi-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.raisefi-notification {
    background: #fff;
    border-left: 4px solid #007cba;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 4px;
    max-width: 350px;
}

.raisefi-notification.success {
    border-left-color: #46b450;
}

.raisefi-notification.error {
    border-left-color: #dc3232;
}

.raisefi-notification.warning {
    border-left-color: #ffb900;
}

/* REPLACE THIS ENTIRE FILE WITH YOUR WORKING VERSION */
