/* --- 1. "Plan Added" Notification Popup CSS --- */
.custom-notification-v2 {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #008080;
    padding: 15px 25px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    border-left: 5px solid #008080;
    font-size: 20px;
}
@media (max-width: 768px) {
    .custom-notification-v2 {
        font-size: 18px;
        padding: 12px 20px;
    }
}
@media (max-width: 480px) {
    .custom-notification-v2 {
        width: 90%;
        font-size: 14px;
        padding: 10px 15px;
        text-align: center;
    }
}