.hrm-toast-wrap {
    pointer-events: none;
    z-index: 99999;
}

.hrm-toast-wrap .hrm-toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 420px;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.hrm-toast-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px 14px 16px;
}

.hrm-toast-success {
    border-left: 4px solid #008ECC;
    background: #f7fbff;
}

.hrm-toast-error {
    border-left: 4px solid #e53935;
    background: #fff8f8;
}

.hrm-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.hrm-toast-success .hrm-toast-icon {
    background: #eaf0ff;
    color: #008ECC;
}

.hrm-toast-error .hrm-toast-icon {
    background: #fde8e8;
    color: #e53935;
}

.hrm-toast-content {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.hrm-toast-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a2342;
    margin-bottom: 2px;
    line-height: 1.3;
}

.hrm-toast-success .hrm-toast-title {
    color: #006fa3;
}

.hrm-toast-message {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    word-break: break-word;
}

.hrm-toast-close {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    opacity: 0.45;
    background-size: 0.65em;
}

.hrm-toast-close:hover {
    opacity: 0.85;
}
