.notification-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 320px;
    max-width: 90%;
}

.notification-container.top-right {
    top: 20px;
    right: 20px;
}

.notification-container.top-left {
    top: 20px;
    left: 20px;
}

.notification-container.bottom-right {
    bottom: 20px;
    right: 20px;
}

.notification-container.bottom-left {
    bottom: 20px;
    left: 20px;
}

.notification-container.top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.notification-container.bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.notification {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 10px;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #fff;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.hiding {
    opacity: 0;
    transform: translateX(40px);
}

.notification-success {
    background-color: #0e8a38;
}

.notification-error {
    background-color: #e31e24;
}

.notification-warning {
    background-color: #f59e0b;
}

.notification-info {
    background-color: #3b82f6;
}

.notification-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
}

.notification-content {
    flex: 1;
}

.notification-title {
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 16px;
}

.notification-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: 0;
    color: white;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close svg {
    width: 16px;
    height: 16px;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
}