/* Global-level error toast (bottom-right). */
.pageToast {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #2a1a00;
    border: 1px solid #b85c00;
    color: #ffb347;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    max-width: 420px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.pageToast__msg,
.pageToast__content {
    flex: 1;
}

.pageToast__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pageToast__icon {
    flex: 0 0 auto;
}

.pageToast__title {
    font-weight: 600;
    line-height: 1.2;
}

.pageToast__desc {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.25;
}

.pageToast__close {
    background: none;
    border: none;
    color: #ffb347;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
}

.pageToast__close:hover {
    opacity: 1;
}
