.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.custom-notification.success {
    background: #28a745;
    color: white;
}

.custom-notification.error {
    background: #dc3545;
    color: white;
}

.notification-content {
    flex-grow: 1;
    margin-right: 15px;
}

.notification-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.5);
    width: 100%;
    transform-origin: left;
} 