.custom-alert {
    position: fixed;
    top: 22px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 12px;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 3px solid #4CAF50;
    box-sizing: border-box;
}

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

.custom-alert.hide {
    transform: translateX(100%);
    opacity: 0;
}

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.alert-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-text {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.alert-message {
    font-size: 12px;
    color: #666;
}

.alert-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-success {
    border-left-color: #4CAF50;
}
.alert-success .alert-icon {
    background: #4CAF50;
}

.alert-error {
    border-left-color: #f44336;
}
.alert-error .alert-icon {
    background: #f44336;
}

.alert-warning {
    border-left-color: #FF9800;
}
.alert-warning .alert-icon {
    background: #FF9800;
}

.alert-info {
    border-left-color: #2196F3;
}
.alert-info .alert-icon {
    background: #2196F3;
}