.ohoit-dialog{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 280px;
    max-width: 420px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
    animation: slideIn .35s ease;
}

.ohoit-dialog.hidden{
    display: none;
}

.ohoit-dialog-content{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.ohoit-dialog.success{
    background: linear-gradient(135deg, #62f6d4, #3ccf9a);
    color: #062b23;
}

.ohoit-dialog.error{
    background: linear-gradient(135deg, #ff6b6b, #d64545);
    color: #3b0a0a;
}

.ohoit-dialog-close{
    margin-left: auto;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
}

@keyframes slideIn{
    from{ transform: translateX(30px); opacity: 0; }
    to{ transform: translateX(0); opacity: 1; }
}
