.guest-access-card {
    border-color: rgba(53, 213, 176, 0.38);
    background: linear-gradient(135deg, rgba(53, 213, 176, 0.10), rgba(100, 117, 255, 0.08));
}

.guest-access-card .workspace-status {
    color: #9aefd9;
}

.guest-save-note {
    margin: 12px 0 0;
    padding: 13px 15px;
    border: 1px solid rgba(100, 117, 255, 0.26);
    border-radius: 12px;
    background: rgba(100, 117, 255, 0.07);
    color: var(--muted, #9fb0c5);
    font-size: 12px;
    line-height: 1.55;
}

/* Make the first required quotation details visually obvious without
   changing the established PowderQuote palette. */
.customer-entry-guide {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -4px 0 13px;
    padding: 12px 14px;
    border: 1px solid rgba(53, 213, 176, 0.28);
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(53, 213, 176, 0.09), rgba(100, 117, 255, 0.055));
}

.customer-entry-guide-icon {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(53, 213, 176, 0.14);
    color: #83e8b2;
    font-size: 18px;
    font-weight: 900;
}

.customer-entry-guide > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.customer-entry-guide strong {
    color: #f4f8fc;
    font-size: 12px;
    line-height: 1.35;
}

.customer-entry-guide small {
    color: var(--muted, #9fb0c5);
    font-size: 11px;
    line-height: 1.45;
}

.customer-entry-focus {
    position: relative;
    margin: 0 -10px;
    padding: 14px 10px 12px;
    border: 1px solid rgba(100, 117, 255, 0.20);
    border-radius: 14px;
    background: rgba(100, 117, 255, 0.035);
}

.customer-entry-required label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #e7eef8;
}

.customer-required-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 7px;
    border: 1px solid rgba(53, 213, 176, 0.26);
    border-radius: 999px;
    background: rgba(53, 213, 176, 0.09);
    color: #8ce9c9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.customer-entry-required input[data-pq-focus-required="1"] {
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.customer-entry-required input[data-pq-focus-required="1"]:placeholder-shown {
    border-color: rgba(53, 213, 176, 0.58);
    background: linear-gradient(180deg, rgba(53, 213, 176, 0.045), rgba(11, 23, 37, 0.98));
    box-shadow: inset 3px 0 0 rgba(53, 213, 176, 0.55);
}

.customer-entry-required input[data-pq-focus-required="1"]:focus {
    border-color: #63d297;
    box-shadow: 0 0 0 3px rgba(53, 213, 176, 0.13), inset 3px 0 0 rgba(53, 213, 176, 0.7);
}

.customer-entry-required input[data-pq-focus-required="1"]::placeholder {
    color: #7990a9;
    opacity: 1;
}

/* The toolbar Undo/Redo labels can be empty in some localized catalogs.
   Keep the controls unambiguous by rendering universal icons. */
#drawing-undo-selection,
#drawing-redo-selection {
    width: 34px;
    min-width: 34px;
    padding-left: 0;
    padding-right: 0;
    font-size: 0;
}

#drawing-undo-selection::before,
#drawing-redo-selection::before {
    display: block;
    font-size: 17px;
    line-height: 1;
}

#drawing-undo-selection::before { content: "↶"; }
#drawing-redo-selection::before { content: "↷"; }

@media (max-width: 700px) {
    .customer-entry-guide {
        align-items: flex-start;
    }
    .customer-entry-focus {
        margin-left: -6px;
        margin-right: -6px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .customer-entry-required label {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}
