
#leadstage-notification-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

.leadstage-notification {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 300px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
}

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

.leadstage-notification.top-left,
.leadstage-notification.bottom-left {
    transform: translateX(-100%);
}

.leadstage-notification.top-left.show,
.leadstage-notification.bottom-left.show {
    transform: translateX(0);
}

.leadstage-notification .leadstage-content {
    margin-bottom: 8px;
    color: #333;
}

.leadstage-notification .leadstage-time {
    color: #666;
    font-size: 12px;
}

.leadstage-notification .leadstage-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none!important;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding:0!important;
}

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

/* Position classes */
.leadstage-container-top-left {
    top: 20px;
    left: 20px;
}

.leadstage-container-top-right {
    top: 20px;
    right: 20px;
}

.leadstage-container-bottom-left {
    bottom: 20px;
    left: 20px;
}

.leadstage-container-bottom-right {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .leadstage-notification {
        max-width: calc(100vw - 40px);
        left: 20px !important;
        right: 20px !important;
    }
    
    .leadstage-container-top-left,
    .leadstage-container-top-right {
        left: 20px;
        right: 20px;
        top: 20px;
    }
    
    .leadstage-container-bottom-left,
    .leadstage-container-bottom-right {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
