/* ─── Labaround Registration — User Type Selector ───────────────────────────── */

.lbr-type-selector {
    margin: 18px 0 6px;
}

.lbr-type-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 6px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: border-color 0.15s, background 0.15s;
    background: #fff;
    line-height: 1.4;
}

.lbr-type-label:hover {
    border-color: #0aada8;
    background: #f0fdfc;
}

.lbr-type-radio {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #0aada8;
    cursor: pointer;
}

.lbr-type-label:has(.lbr-type-radio:checked) {
    border-color: #0aada8;
    background: #f0fdfc;
    color: #0aada8;
}

.lbr-type-note {
    display: none;
    align-items: flex-start;
    gap: 8px;
    margin: -2px 0 10px 0;
    padding: 10px 14px;
    background: #f0fdfc;
    border-left: 3px solid #0aada8;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}

#lbr-lab-fields {
    margin-top: 12px;
}

#lbr-lab-fields .form-row {
    margin-bottom: 10px;
}

#lbr-lab-fields label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #374151;
}

#lbr-lab-fields input {
    width: 100%;
    box-sizing: border-box;
}

.vendor-customer-registration {
    display: none !important;
}

/* ─── Lab Professional Dashboard ─────────────────────────────────────────────── */

.lbr-labpro-welcome {
    font-size: 15px;
    color: #374151;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.lbr-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lbr-qa-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}

.lbr-qa-card:hover {
    border-color: #0aada8;
    box-shadow: 0 4px 16px rgba(10,173,168,0.10);
    transform: translateY(-1px);
    text-decoration: none;
    color: inherit;
}

.lbr-qa-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.lbr-qa-body {
    flex: 1;
}

.lbr-qa-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.lbr-qa-body p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.lbr-qa-arrow {
    font-size: 20px;
    color: #0aada8;
    flex-shrink: 0;
    font-weight: 700;
}

/* ─── My Posts ───────────────────────────────────────────────────────────────── */

.lbr-my-posts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lbr-my-posts-header h2 {
    margin: 0;
    font-size: 18px;
}

.lbr-btn-primary {
    display: inline-block;
    padding: 8px 16px;
    background: #0aada8;
    color: #fff !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.lbr-btn-primary:hover {
    background: #089d98;
    text-decoration: none;
}

.lbr-posts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.lbr-posts-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #e5e7eb;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lbr-posts-table td {
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.lbr-post-actions a {
    color: #0aada8;
    text-decoration: none;
    font-size: 13px;
}

.lbr-post-actions a:hover {
    text-decoration: underline;
}

.lbr-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lbr-status-published { background: #d1fae5; color: #065f46; }
.lbr-status-draft     { background: #f3f4f6; color: #6b7280; }
.lbr-status-pending   { background: #fef3c7; color: #92400e; }

.lbr-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.lbr-empty-state p {
    margin-bottom: 16px;
    font-size: 15px;
}
