/* XMP Public Styles */

.xmp-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.xmp-error { background: #fff3cd; border: 1px solid #ffc107; padding: 12px; border-radius: 4px; margin: 10px 0; }
.xmp-empty { color: #6c757d; font-style: italic; text-align: center; padding: 20px; }

/* Loading */
.xmp-loading { text-align: center; padding: 40px; }
.xmp-spinner { display: inline-block; width: 30px; height: 30px; border: 3px solid #e9ecef; border-top-color: #0073aa; border-radius: 50%; animation: xmp-spin 0.8s linear infinite; }
@keyframes xmp-spin { to { transform: rotate(360deg); } }

/* Grid Layout */
.xmp-projects-grid { display: grid; gap: 20px; }

/* Project Cards */
.xmp-project-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; transition: box-shadow 0.2s; }
.xmp-project-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.xmp-project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.xmp-project-name { margin: 0; font-size: 16px; font-weight: 600; }
.xmp-project-desc { color: #64748b; font-size: 14px; margin: 8px 0; }
.xmp-project-footer { margin-top: 12px; }
.xmp-project-client { font-size: 12px; color: #94a3b8; }

/* Progress Bar */
.xmp-progress-bar { background: #e2e8f0; border-radius: 4px; height: 6px; overflow: hidden; margin: 8px 0; }
.xmp-progress-fill { background: #3b82f6; height: 100%; border-radius: 4px; transition: width 0.3s; }

/* Status Badges */
.xmp-status { display: inline-block; padding: 2px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.xmp-status-active { background: #dcfce7; color: #166534; }
.xmp-status-completed { background: #dbeafe; color: #1e40af; }
.xmp-status-planning { background: #fef3c7; color: #92400e; }
.xmp-status-on_hold { background: #f3e8ff; color: #6b21a8; }
.xmp-status-cancelled { background: #fee2e2; color: #991b1b; }

/* List Layout */
.xmp-project-row { display: flex; justify-content: space-between; align-items: center; padding: 15px; border-bottom: 1px solid #e2e8f0; }
.xmp-project-row:last-child { border-bottom: none; }

/* Team Grid */
.xmp-team-grid { display: grid; gap: 15px; text-align: center; }
.xmp-team-avatar { width: 48px; height: 48px; border-radius: 50%; background: #3b82f6; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 600; margin: 0 auto 8px; }
.xmp-team-name { font-weight: 600; font-size: 14px; }
.xmp-team-role { color: #64748b; font-size: 12px; }

/* Widget Styles */
.xmp-widget-projects .xmp-widget-project-item { margin-bottom: 12px; }
.xmp-widget-project-name { font-weight: 600; font-size: 13px; margin-bottom: 4px; }
.xmp-widget-project-meta { display: flex; justify-content: space-between; font-size: 11px; margin-top: 4px; }
.xmp-progress-text { color: #64748b; }

/* Widget Stats */
.xmp-widget-stats { display: flex; gap: 15px; text-align: center; }
.xmp-stat-value { display: block; font-size: 24px; font-weight: 700; color: #1e293b; }
.xmp-stat-label { font-size: 11px; color: #94a3b8; text-transform: uppercase; }

/* Pagination */
.xmp-pagination { display: flex; justify-content: center; gap: 5px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #e2e8f0; }
.xmp-pagination a, .xmp-pagination span { padding: 6px 12px; border: 1px solid #e2e8f0; border-radius: 4px; font-size: 13px; text-decoration: none; }
.xmp-pagination .current { background: #3b82f6; color: #fff; border-color: #3b82f6; }

/* Table Layout */
.xmp-projects-table,
.xmp-invoices-table { width: 100%; border-collapse: collapse; }
.xmp-projects-table th,
.xmp-invoices-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.xmp-projects-table td,
.xmp-invoices-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #334155; }
.xmp-projects-table tr:hover td,
.xmp-invoices-table tr:hover td { background: #f8fafc; }
.xmp-table-desc { color: #94a3b8; font-size: 12px; }

/* Single Project Detail */
.xmp-project-detail-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.xmp-project-title { margin: 0; font-size: 24px; font-weight: 700; color: #1e293b; }
.xmp-project-description { color: #475569; line-height: 1.6; margin-bottom: 24px; }
.xmp-project-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.xmp-meta-item { background: #f8fafc; padding: 14px; border-radius: 6px; }
.xmp-meta-label { display: block; font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.xmp-meta-value { font-size: 15px; font-weight: 600; color: #1e293b; }
.xmp-project-progress-section { margin-bottom: 28px; }
.xmp-progress-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; color: #475569; margin-bottom: 8px; }
.xmp-progress-bar-lg { height: 10px; }

/* Milestones */
.xmp-project-milestones { margin-bottom: 28px; }
.xmp-project-milestones h3 { font-size: 18px; font-weight: 600; color: #1e293b; margin: 0 0 16px; }
.xmp-milestones-list { display: flex; flex-direction: column; gap: 10px; }
.xmp-milestone-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; }
.xmp-milestone-indicator { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.xmp-milestone-completed { background: #22c55e; }
.xmp-milestone-active,
.xmp-milestone-in_progress { background: #3b82f6; }
.xmp-milestone-pending { background: #d1d5db; }
.xmp-milestone-content { flex: 1; }
.xmp-milestone-content strong { display: block; font-size: 14px; color: #1e293b; }
.xmp-milestone-date { font-size: 12px; color: #94a3b8; }

/* Project Files */
.xmp-project-files h3 { font-size: 18px; font-weight: 600; color: #1e293b; margin: 0 0 16px; }
.xmp-files-list { list-style: none; padding: 0; margin: 0; }
.xmp-file-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid #f1f5f9; }
.xmp-file-item:last-child { border-bottom: none; }
.xmp-file-name { font-size: 14px; color: #334155; }
.xmp-file-size { font-size: 12px; color: #94a3b8; }

/* Contacts */
.xmp-contacts-list { display: flex; flex-direction: column; gap: 12px; }
.xmp-contact-card { display: flex; align-items: center; gap: 16px; padding: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; transition: box-shadow 0.2s; }
.xmp-contact-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.xmp-contact-avatar { width: 44px; height: 44px; border-radius: 50%; background: #6366f1; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; flex-shrink: 0; }
.xmp-contact-info { flex: 1; }
.xmp-contact-name { margin: 0 0 2px; font-size: 15px; font-weight: 600; color: #1e293b; }
.xmp-contact-company { display: block; font-size: 13px; color: #64748b; }
.xmp-contact-email { display: block; font-size: 13px; color: #3b82f6; text-decoration: none; }
.xmp-contact-email:hover { text-decoration: underline; }
.xmp-contact-phone { display: block; font-size: 12px; color: #94a3b8; }

/* Invoice Status */
.xmp-status-draft { background: #f1f5f9; color: #475569; }
.xmp-status-sent { background: #dbeafe; color: #1e40af; }
.xmp-status-paid { background: #dcfce7; color: #166534; }
.xmp-status-overdue { background: #fee2e2; color: #991b1b; }
.xmp-status-pending { background: #fef3c7; color: #92400e; }

/* Lead Form */
.xmp-lead-form-wrap { max-width: 560px; }
.xmp-form-fields { display: flex; flex-direction: column; gap: 14px; }
.xmp-form-group label { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 500; color: #374151; }
.xmp-form-group input,
.xmp-form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 6px; font-size: 14px; font-family: inherit; box-sizing: border-box; transition: border-color 0.2s; }
.xmp-form-group input:focus,
.xmp-form-group textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.xmp-required { color: #dc2626; }
.xmp-field-error { display: block; font-size: 12px; color: #dc2626; margin-top: 4px; }
.xmp-form-footer { margin-top: 18px; }
.xmp-submit-btn { padding: 12px 28px; background: #3b82f6; color: #fff; border: none; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.xmp-submit-btn:hover { background: #2563eb; }
.xmp-submit-btn:disabled { background: #93c5fd; cursor: not-allowed; }
.xmp-spinner-small { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: xmp-spin 0.6s linear infinite; vertical-align: middle; }
.xmp-form-message { margin-top: 14px; padding: 12px; border-radius: 6px; font-size: 14px; }
.xmp-msg-success { background: #dcfce7; color: #166534; }
.xmp-msg-error { background: #fef2f2; color: #991b1b; }

/* Loading Text */
.xmp-loading-text { margin-top: 10px; color: #64748b; font-size: 14px; }

/* Calendar */
.xmp-calendar-list { display: flex; flex-direction: column; gap: 12px; }
.xmp-event-card { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; transition: box-shadow 0.2s; }
.xmp-event-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.xmp-event-date-badge { min-width: 52px; text-align: center; background: #3b82f6; color: #fff; border-radius: 8px; padding: 8px 4px; }
.xmp-event-month { display: block; font-size: 11px; text-transform: uppercase; font-weight: 600; }
.xmp-event-day { display: block; font-size: 22px; font-weight: 700; line-height: 1; }
.xmp-event-info { flex: 1; }
.xmp-event-title { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: #1e293b; }
.xmp-event-desc { color: #64748b; font-size: 13px; margin: 4px 0; }
.xmp-event-meta { display: flex; gap: 8px; align-items: center; font-size: 12px; color: #94a3b8; margin-top: 6px; }
.xmp-event-separator { color: #cbd5e1; }
.xmp-event-location { display: block; font-size: 12px; color: #64748b; margin-top: 4px; }

/* Calendar Month View */
.xmp-calendar-month { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.xmp-calendar-header { padding: 16px; text-align: center; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.xmp-calendar-header h3 { margin: 0; font-size: 18px; font-weight: 600; color: #1e293b; }
.xmp-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.xmp-calendar-dow { padding: 10px; text-align: center; font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; background: #f8fafc; border-bottom: 1px solid #e2e8f0; }
.xmp-calendar-cell { min-height: 80px; padding: 6px; border-right: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; position: relative; }
.xmp-calendar-empty { background: #fafafa; }
.xmp-calendar-today { background: #eff6ff; }
.xmp-calendar-day-num { font-size: 13px; font-weight: 600; color: #475569; }
.xmp-calendar-today .xmp-calendar-day-num { color: #3b82f6; }
.xmp-calendar-event-dot { font-size: 10px; background: #dbeafe; color: #1e40af; padding: 1px 4px; border-radius: 3px; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xmp-calendar-more { font-size: 10px; color: #3b82f6; }

/* Workflows */
.xmp-workflows-grid { display: grid; gap: 20px; }
.xmp-workflow-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; transition: box-shadow 0.2s; }
.xmp-workflow-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.xmp-workflow-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.xmp-workflow-name { margin: 0; font-size: 16px; font-weight: 600; color: #1e293b; }
.xmp-workflow-desc { color: #64748b; font-size: 14px; margin: 8px 0; }
.xmp-workflow-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 12px; color: #94a3b8; }
.xmp-workflow-issues { font-weight: 500; }
.xmp-workflows-table { width: 100%; border-collapse: collapse; }
.xmp-workflows-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.xmp-workflows-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #334155; }
.xmp-workflows-table tr:hover td { background: #f8fafc; }
.xmp-status-paused { background: #fef3c7; color: #92400e; }
.xmp-status-archived { background: #f1f5f9; color: #475569; }

/* Time Entries */
.xmp-time-entries-table { width: 100%; border-collapse: collapse; }
.xmp-time-entries-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.xmp-time-entries-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #334155; }
.xmp-time-entries-table tr:hover td { background: #f8fafc; }
.xmp-duration { font-family: monospace; font-weight: 600; color: #1e293b; font-size: 13px; }
.xmp-badge { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; margin-left: 6px; }
.xmp-badge-billable { background: #dcfce7; color: #166534; }
.xmp-status-running { background: #fef3c7; color: #92400e; animation: xmp-pulse 2s infinite; }
@keyframes xmp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Transactions */
.xmp-transactions-table { width: 100%; border-collapse: collapse; }
.xmp-transactions-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.xmp-transactions-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #334155; }
.xmp-transactions-table tr:hover td { background: #f8fafc; }
.xmp-badge-income { background: #dcfce7; color: #166534; }
.xmp-badge-expense { background: #fee2e2; color: #991b1b; }
.xmp-amount { font-family: monospace; font-weight: 600; font-size: 14px; }
.xmp-amount-income { color: #166534; }
.xmp-amount-expense { color: #991b1b; }

/* Clients Grid */
.xmp-clients-grid { display: grid; gap: 20px; }
.xmp-client-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 24px; text-align: center; transition: box-shadow 0.2s; }
.xmp-client-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.xmp-client-avatar { width: 56px; height: 56px; border-radius: 50%; background: #8b5cf6; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 600; margin: 0 auto 12px; }
.xmp-client-name { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: #1e293b; }
.xmp-client-email { display: block; font-size: 13px; color: #3b82f6; text-decoration: none; margin-bottom: 4px; }
.xmp-client-email:hover { text-decoration: underline; }
.xmp-client-phone { display: block; font-size: 12px; color: #94a3b8; margin-bottom: 8px; }
.xmp-client-stats { display: flex; justify-content: center; gap: 16px; margin-top: 12px; font-size: 12px; color: #64748b; }
.xmp-client-stat { display: flex; align-items: center; gap: 4px; }
.xmp-clients-table { width: 100%; border-collapse: collapse; }
.xmp-clients-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #e2e8f0; }
.xmp-clients-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #334155; }
.xmp-clients-table tr:hover td { background: #f8fafc; }
.xmp-clients-list { display: flex; flex-direction: column; gap: 12px; }

/* Emails */
.xmp-emails-list { display: flex; flex-direction: column; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.xmp-email-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid #f1f5f9; transition: background 0.15s; cursor: default; }
.xmp-email-item:last-child { border-bottom: none; }
.xmp-email-item:hover { background: #f8fafc; }
.xmp-email-unread { background: #eff6ff; }
.xmp-email-unread .xmp-email-sender strong { font-weight: 700; }
.xmp-email-sender { min-width: 160px; font-size: 14px; color: #334155; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xmp-email-content { flex: 1; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.xmp-email-subject { font-size: 14px; color: #1e293b; font-weight: 500; }
.xmp-email-snippet { font-size: 13px; color: #94a3b8; }
.xmp-email-date { font-size: 12px; color: #94a3b8; white-space: nowrap; }

/* Email Threads */
.xmp-email-threads { display: flex; flex-direction: column; gap: 10px; }
.xmp-email-thread { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 16px; transition: box-shadow 0.2s; }
.xmp-email-thread:hover { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.xmp-thread-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.xmp-thread-subject { font-size: 15px; color: #1e293b; }
.xmp-thread-count { font-size: 12px; color: #94a3b8; }
.xmp-thread-participants { font-size: 13px; color: #64748b; margin-bottom: 4px; }
.xmp-thread-snippet { font-size: 13px; color: #94a3b8; margin: 6px 0 0; }
.xmp-thread-date { font-size: 12px; color: #94a3b8; }

/* Organization */
.xmp-org-info { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 24px; }
.xmp-org-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #e2e8f0; }
.xmp-org-logo { width: 64px; height: 64px; border-radius: 8px; object-fit: contain; }
.xmp-org-name { margin: 0 0 4px; font-size: 20px; font-weight: 700; color: #1e293b; }
.xmp-org-website { font-size: 13px; color: #3b82f6; text-decoration: none; }
.xmp-org-website:hover { text-decoration: underline; }
.xmp-org-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.xmp-org-detail { padding: 12px; background: #f8fafc; border-radius: 6px; }
.xmp-org-label { display: block; font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.xmp-org-value { font-size: 14px; color: #1e293b; font-weight: 500; }
.xmp-team-avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; display: block; }
.xmp-team-email { display: block; font-size: 12px; color: #3b82f6; text-decoration: none; margin-top: 4px; }
.xmp-team-email:hover { text-decoration: underline; }

/* Business Hours */
.xmp-hours-table { width: 100%; border-collapse: collapse; }
.xmp-hours-table th { background: #f8fafc; text-align: left; padding: 10px 14px; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; border-bottom: 2px solid #e2e8f0; }
.xmp-hours-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.xmp-hours-open td { color: #334155; }
.xmp-hours-closed td { color: #94a3b8; }

/* Reports */
.xmp-report-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.xmp-report-stat { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; text-align: center; }
.xmp-report-stat-primary { border-color: #3b82f6; background: #eff6ff; }
.xmp-report-stat-warning { border-color: #f59e0b; background: #fffbeb; }
.xmp-report-stat-value { display: block; font-size: 28px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.xmp-report-stat-label { font-size: 12px; font-weight: 500; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; }

/* Responsive */
@media (max-width: 768px) {
    .xmp-projects-grid,
    .xmp-workflows-grid,
    .xmp-clients-grid { grid-template-columns: 1fr !important; }
    .xmp-team-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .xmp-widget-stats { flex-direction: column; }
    .xmp-project-detail-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    .xmp-project-meta-grid { grid-template-columns: 1fr; }
    .xmp-projects-table, .xmp-invoices-table, .xmp-workflows-table,
    .xmp-time-entries-table, .xmp-transactions-table, .xmp-clients-table { font-size: 13px; }
    .xmp-projects-table th, .xmp-projects-table td,
    .xmp-invoices-table th, .xmp-invoices-table td,
    .xmp-workflows-table th, .xmp-workflows-table td,
    .xmp-time-entries-table th, .xmp-time-entries-table td,
    .xmp-transactions-table th, .xmp-transactions-table td,
    .xmp-clients-table th, .xmp-clients-table td { padding: 8px 10px; }
    .xmp-contact-card { flex-direction: column; text-align: center; }
    .xmp-event-card { flex-direction: column; }
    .xmp-email-item { flex-direction: column; align-items: flex-start; }
    .xmp-email-sender { min-width: auto; }
    .xmp-calendar-grid { font-size: 12px; }
    .xmp-calendar-cell { min-height: 50px; }
    .xmp-report-cards { grid-template-columns: repeat(2, 1fr); }
    .xmp-org-header { flex-direction: column; text-align: center; }
    .xmp-org-details { grid-template-columns: 1fr; }
}
