/* Bright Kitchen Global Feedback (shared look across apps) */

.bk-feedback-hidden {
    display: none !important;
}

.bk-feedback-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.55);
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bk-feedback-modal {
    width: min(520px, 100%);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.bk-feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e2e8f0;
}

.bk-feedback-title {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.2px;
    color: #0f172a;
}

.bk-feedback-close {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-size: 18px;
    line-height: 0;
    cursor: pointer;
}

.bk-feedback-close:hover {
    background: #f1f5f9;
}

.bk-feedback-body {
    padding: 14px 16px 16px 16px;
    display: grid;
    gap: 10px;
}

.bk-feedback-label {
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #475569;
}

.bk-feedback-textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 12px;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.35;
    outline: none;
}

.bk-feedback-textarea:focus {
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.bk-feedback-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bk-feedback-select {
    height: 38px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0 10px;
    font-weight: 700;
    font-size: 12px;
    color: #0f172a;
    background: #ffffff;
    outline: none;
}

.bk-feedback-submit {
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 0 14px;
    cursor: pointer;
}

.bk-feedback-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.bk-feedback-meta {
    font-size: 11px;
    color: #64748b;
}

.bk-feedback-status {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

/* MenuApp placement */
.sidebar-feedback-btn {
    height: 36px;
    margin-top: 8px;
}

.app-shell.sidebar-collapsed .sidebar-feedback-btn {
    width: 42px !important;
    min-width: 42px;
    padding: 0;
    justify-content: center;
}

