/**
 * ProCommerce Core - Alert System (CSS)
 *
 * Styling for alert notifications matching raw-edge implementation.
 * Instant show/hide, no animations.
 */

.pc-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    text-align: center;
    display: none;
    padding: .6rem;
    color: white;
}

.pc-alert-error {
    background-color: var(--bs-danger);
}

.pc-alert-success {
    background-color: var(--bs-success);
}

.pc-alert-btn {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 14px;
    background-color: #fff;
    color: #333;
    border-radius: 800px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.pc-alert-btn:hover {
    background-color: #f3f3f3;
    color: #111;
}
