.vdocipher-alert {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 99999;
    background: #fff;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    transition: right 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-family: "Segoe UI", Roboto, sans-serif;
}
.vdocipher-alert.show { right: 20px; opacity: 1; }
.vdocipher-alert.success { border-left: 4px solid #4CAF50; }
.vdocipher-alert.error { border-left: 4px solid #f44336; }
.vdocipher-alert.warning { border-left: 4px solid #ff9800; }
.vdocipher-alert-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    line-height: 1;
}
.vdocipher-alert-message { flex: 1; line-height: 1.4; }
