.procomp-auth-toast {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    width: 370px;
    max-width: calc(100vw - 24px);
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
    color: #0f172a;
    z-index: 2147483647 !important;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    overflow: hidden;
}

.procomp-auth-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.procomp-auth-toast-content {
    flex: 1;
    min-width: 0;
}

.procomp-auth-toast-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    padding-right: 28px;
}

.procomp-auth-toast-message {
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.procomp-auth-toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    font-size: 18px;
    margin-top: 1px;
}

.procomp-auth-toast-icon i {
    line-height: 1;
}

.procomp-auth-toast-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.procomp-auth-toast-close:hover {
    background: rgba(148, 163, 184, 0.12);
    color: #334155;
}

/* SUCCESS */
.procomp-auth-toast-success {
    border-left: 4px solid #22c55e;
}

.procomp-auth-toast-success .procomp-auth-toast-icon {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.procomp-auth-toast-success .procomp-auth-toast-title {
    color: #166534;
}

/* ERROR */
.procomp-auth-toast-error {
    border-left: 4px solid #ef4444;
}

.procomp-auth-toast-error .procomp-auth-toast-icon {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.procomp-auth-toast-error .procomp-auth-toast-title {
    color: #991b1b;
}

/* WARNING */
.procomp-auth-toast-warning {
    border-left: 4px solid #f59e0b;
}

.procomp-auth-toast-warning .procomp-auth-toast-icon {
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
}

.procomp-auth-toast-warning .procomp-auth-toast-title {
    color: #92400e;
}

/* INFO */
.procomp-auth-toast-info {
    border-left: 4px solid #3b82f6;
}

.procomp-auth-toast-info .procomp-auth-toast-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.procomp-auth-toast-info .procomp-auth-toast-title {
    color: #1d4ed8;
}

@media (max-width: 767px) {
    .procomp-auth-toast {
        right: 12px !important;
        bottom: 12px !important;
        width: calc(100vw - 24px);
        min-width: unset;
        padding: 16px 16px 16px 14px;
        border-radius: 14px;
    }

    .procomp-auth-toast-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }

    .procomp-auth-toast-title {
        font-size: 14px;
    }

    .procomp-auth-toast-message {
        font-size: 13px;
    }
}