/* Notification Container */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
}

/* Notification Base Style */
.notification {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    border-left: 4px solid #ccc;
}

.notification-show {
    opacity: 1;
    transform: translateX(0);
}

.notification-hide {
    opacity: 0;
    transform: translateX(30px);
}

/* Notification Icon */
.notification i {
    margin-right: 12px;
    font-size: 18px;
}

/* Notification Close Button */
.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* Notification Types */
.notification-success {
    border-left-color: #4CAF50;
}
.notification-success i {
    color: #4CAF50;
}

.notification-error {
    border-left-color: #F44336;
}
.notification-error i {
    color: #F44336;
}

.notification-warning {
    border-left-color: #FF9800;
}
.notification-warning i {
    color: #FF9800;
}

.notification-info {
    border-left-color: #2196F3;
}
.notification-info i {
    color: #2196F3;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #notification-container {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}
