.quick-access-box {
    margin: 12px auto 0;
    gap: 12px;
    max-width: 450px;
    width: 100%;

    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 10px 14px;
    border-radius: 12px;

    font-size: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.qa-left {
    font-weight: 600;
    color: #1d4ed8;
}

.qa-actions {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    align-items: center;
}

.qa-actions button {
    background: #111827;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.qa-actions button:hover {
    opacity: 0.85;
}

.qr-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 20px;
}

.internal-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .qr-container {
        position: static; /* 🔥 stop absolute */
        margin-top: 10px;
        justify-content: center;
    }

    .internal-title-wrapper {
        flex-direction: column;
    }
}

.qr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.qr-overlay-content {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.qr-overlay-content img {
    width: 180px;
    height: 180px;
}

.qr-overlay-content p {
    margin-top: 10px;
    font-size: 14px;
    color: #374151;
}
