:root {
    color-scheme: light;
    --remind-bg: #f5f5f5;
    --remind-surface: #ffffff;
    --remind-surface-subtle: #fafafa;
    --remind-surface-hover: #f0f0f0;
    --remind-surface-pressed: #e0e0e0;
    --remind-text: #242424;
    --remind-text-secondary: #616161;
    --remind-text-disabled: #bdbdbd;
    --remind-border: #d1d1d1;
    --remind-border-subtle: #e0e0e0;
    --remind-brand: #5b5fc7;
    --remind-brand-hover: #4f52b2;
    --remind-brand-pressed: #444791;
    --remind-on-brand: #ffffff;
    --remind-danger: #c50f1f;
    --remind-danger-hover: #b10e1c;
    --remind-success: #107c10;
    --remind-success-surface: #f1faf1;
    --remind-warning-surface: #fff4ce;
    --remind-focus: #5b5fc7;
    --remind-shadow-4: 0 2px 4px rgba(0, 0, 0, 0.14);
    --remind-shadow-16: 0 8px 32px rgba(0, 0, 0, 0.2);
    --remind-radius-small: 4px;
    --remind-radius-medium: 8px;
    --remind-radius-large: 12px;
    --remind-space-1: 4px;
    --remind-space-2: 8px;
    --remind-space-3: 12px;
    --remind-space-4: 16px;
    --remind-space-5: 20px;
    --remind-space-6: 24px;
    --remind-space-8: 32px;
    --remind-space-10: 40px;
}

html[data-teams-theme='dark'] {
    color-scheme: dark;
    --remind-bg: #1f1f1f;
    --remind-surface: #292929;
    --remind-surface-subtle: #242424;
    --remind-surface-hover: #3d3d3d;
    --remind-surface-pressed: #484848;
    --remind-text: #ffffff;
    --remind-text-secondary: #d6d6d6;
    --remind-text-disabled: #707070;
    --remind-border: #666666;
    --remind-border-subtle: #484848;
    --remind-brand: #9298f7;
    --remind-brand-hover: #aab1fa;
    --remind-brand-pressed: #c5cbff;
    --remind-on-brand: #1f1f1f;
    --remind-danger: #dc626d;
    --remind-danger-hover: #e9838c;
    --remind-success: #54b054;
    --remind-success-surface: #1f321f;
    --remind-warning-surface: #4a3b12;
    --remind-focus: #aab1fa;
    --remind-shadow-4: 0 2px 4px rgba(0, 0, 0, 0.36);
    --remind-shadow-16: 0 8px 32px rgba(0, 0, 0, 0.52);
}

html[data-teams-theme='contrast'] {
    color-scheme: dark;
    --remind-bg: #000000;
    --remind-surface: #000000;
    --remind-surface-subtle: #000000;
    --remind-surface-hover: #1a1a1a;
    --remind-surface-pressed: #333333;
    --remind-text: #ffffff;
    --remind-text-secondary: #ffffff;
    --remind-text-disabled: #bdbdbd;
    --remind-border: #ffffff;
    --remind-border-subtle: #ffffff;
    --remind-brand: #ffff00;
    --remind-brand-hover: #ffff66;
    --remind-brand-pressed: #ffffff;
    --remind-on-brand: #000000;
    --remind-danger: #ff99a4;
    --remind-danger-hover: #ffffff;
    --remind-success: #3ff23f;
    --remind-success-surface: #000000;
    --remind-warning-surface: #000000;
    --remind-focus: #ffff00;
    --remind-shadow-4: none;
    --remind-shadow-16: none;
}

html[data-teams-theme='glass'] {
    color-scheme: dark;
    --remind-bg: transparent;
    --remind-surface: rgba(31, 31, 31, 0.76);
    --remind-surface-subtle: rgba(41, 41, 41, 0.7);
    --remind-surface-hover: rgba(61, 61, 61, 0.84);
    --remind-surface-pressed: rgba(72, 72, 72, 0.9);
    --remind-text: #ffffff;
    --remind-text-secondary: #e0e0e0;
    --remind-text-disabled: #a0a0a0;
    --remind-border: rgba(255, 255, 255, 0.42);
    --remind-border-subtle: rgba(255, 255, 255, 0.22);
    --remind-brand: #aab1fa;
    --remind-brand-hover: #c5cbff;
    --remind-brand-pressed: #ffffff;
    --remind-on-brand: #1f1f1f;
    --remind-danger: #ff99a4;
    --remind-danger-hover: #ffc7cc;
    --remind-success: #7fdd7f;
    --remind-success-surface: rgba(31, 50, 31, 0.82);
    --remind-warning-surface: rgba(74, 59, 18, 0.82);
    --remind-focus: #c5cbff;
}

html,
body {
    min-height: 100%;
}

body.remind-app,
body.remind-login {
    margin: 0;
    background: var(--remind-bg);
    color: var(--remind-text);
    font-family:
        'Segoe UI',
        -apple-system,
        BlinkMacSystemFont,
        system-ui,
        sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

a {
    color: var(--remind-brand);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
summary,
select {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--remind-focus);
    outline-offset: 2px;
}

.remind-sr-only,
.remind-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.remind-skip-link {
    position: fixed;
    z-index: 1000;
    top: var(--remind-space-2);
    left: var(--remind-space-2);
    padding: var(--remind-space-2) var(--remind-space-3);
    border-radius: var(--remind-radius-small);
    background: var(--remind-surface);
    color: var(--remind-text);
    box-shadow: var(--remind-shadow-4);
    transform: translateY(-200%);
}

.remind-skip-link:focus {
    transform: translateY(0);
}

.remind-shell {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: var(--remind-space-5) var(--remind-space-6) var(--remind-space-8);
}

.remind-navigation,
.remind-commandbar,
.remind-button-row,
.fluent-dialog-header,
.fluent-dialog-actions,
.remind-purchase-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--remind-space-4);
}

.remind-page-eyebrow,
.remind-eyebrow {
    margin-bottom: var(--remind-space-1);
    color: var(--remind-text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.remind-section-header h1 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.remind-section-header > p:last-child,
.remind-contact-header > p:last-child {
    margin: var(--remind-space-1) 0 0;
    color: var(--remind-text-secondary);
}

.remind-navigation {
    align-items: flex-end;
    min-height: 48px;
    margin-top: var(--remind-space-4);
    margin-bottom: var(--remind-space-4);
    border-bottom: 1px solid var(--remind-border-subtle);
}

.remind-tabs {
    display: flex;
    gap: var(--remind-space-3);
}

.remind-tab {
    min-height: 44px;
    padding: var(--remind-space-3) var(--remind-space-2);
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--remind-text-secondary);
    font-weight: 600;
}

.remind-tab:hover {
    color: var(--remind-text);
}

.remind-tab.is-active {
    border-bottom-color: var(--remind-brand);
    color: var(--remind-text);
}

.remind-main,
.remind-tab-panel {
    min-width: 0;
}

.remind-panel {
    min-width: 0;
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-large);
    background: var(--remind-surface);
}

.remind-panel-body {
    padding: var(--remind-space-5);
}

.remind-support-page {
    min-height: 100vh;
}

.remind-support-shell {
    display: grid;
    width: min(720px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding: var(--remind-space-6);
    place-items: center;
}

.remind-support-card {
    width: 100%;
}

.remind-support-card .remind-panel-body {
    padding: var(--remind-space-8);
}

.remind-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: var(--remind-space-4);
    border-radius: 50%;
    background: var(--remind-success-surface);
    color: var(--remind-success);
    font-size: 22px;
    font-weight: 700;
}

.remind-support-icon-warning {
    background: var(--remind-warning-surface);
    color: var(--remind-text);
}

.remind-support-icon-danger {
    background: color-mix(in srgb, var(--remind-danger) 12%, transparent);
    color: var(--remind-danger);
}

.remind-support-secondary {
    color: var(--remind-text-secondary);
}

.remind-support-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--remind-space-2);
    flex-wrap: wrap;
    margin-top: var(--remind-space-5);
}

.remind-removal-option {
    display: flex;
    align-items: flex-start;
    gap: var(--remind-space-3);
    margin-bottom: var(--remind-space-3);
    padding: var(--remind-space-4);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-medium);
    background: var(--remind-surface-subtle);
    cursor: pointer;
}

.remind-removal-option input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
}

.remind-removal-option strong,
.remind-removal-option small {
    display: block;
}

.remind-removal-option small {
    margin-top: var(--remind-space-1);
    color: var(--remind-text-secondary);
}

.remind-tour-shell {
    width: min(980px, 100%);
}

.remind-tour-card {
    width: 100%;
}

.remind-tour-slide {
    min-height: 540px;
    text-align: center;
}

.remind-tour-image {
    display: block;
    width: min(680px, 100%);
    max-height: 300px;
    margin: 0 auto var(--remind-space-5);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-medium);
    object-fit: contain;
}

.remind-tour-image-compact {
    width: min(420px, 100%);
}

.remind-tour-copy {
    max-width: 760px;
    margin: 0 auto;
}

.remind-tour-copy h1 {
    margin-bottom: var(--remind-space-3);
    font-size: 24px;
    line-height: 1.25;
}

.remind-tour-copy > p:not(.remind-page-eyebrow) {
    color: var(--remind-text-secondary);
}

.remind-tour-examples {
    display: grid;
    gap: var(--remind-space-2);
    margin: var(--remind-space-4) auto;
    padding: var(--remind-space-4) var(--remind-space-4) var(--remind-space-4) 36px;
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-medium);
    background: var(--remind-surface-subtle);
    text-align: left;
}

.remind-tour-finish {
    display: flex;
    min-height: 500px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.remind-tour-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--remind-space-2);
    margin: var(--remind-space-5) 0;
}

.remind-tour-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--remind-text-disabled);
}

.remind-tour-bullet.is-active {
    background: var(--remind-brand);
}

.remind-tour-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.remind-tour-footer #backButton {
    justify-self: start;
}

.remind-tour-footer #nextButton {
    grid-column: 2;
    min-width: 140px;
}

.fluent-button,
.fluent-icon-button,
.fluent-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--remind-space-2);
    min-height: 32px;
    border-radius: var(--remind-radius-small);
    font-weight: 600;
    text-decoration: none;
}

.fluent-button {
    padding: 5px 12px;
    border: 1px solid var(--remind-border);
    background: var(--remind-surface);
    color: var(--remind-text);
}

.fluent-button:hover:not(:disabled) {
    background: var(--remind-surface-hover);
}

.fluent-button:active:not(:disabled) {
    background: var(--remind-surface-pressed);
}

.fluent-button-primary {
    border-color: var(--remind-brand);
    background: var(--remind-brand);
    color: var(--remind-on-brand);
}

.fluent-button-primary:hover:not(:disabled) {
    border-color: var(--remind-brand-hover);
    background: var(--remind-brand-hover);
}

.fluent-button-primary:active:not(:disabled) {
    border-color: var(--remind-brand-pressed);
    background: var(--remind-brand-pressed);
}

.fluent-button-danger {
    border-color: var(--remind-danger);
    background: var(--remind-danger);
    color: #ffffff;
}

.fluent-button-danger:hover:not(:disabled) {
    border-color: var(--remind-danger-hover);
    background: var(--remind-danger-hover);
}

.fluent-button-subtle {
    border-color: transparent;
    background: transparent;
}

.fluent-button:disabled,
.fluent-icon-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.fluent-icon-button {
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--remind-text);
}

.fluent-icon-button:hover:not(:disabled) {
    background: var(--remind-surface-hover);
}

.fluent-link-button {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--remind-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fluent-message {
    display: flex;
    align-items: baseline;
    gap: var(--remind-space-2);
    flex-wrap: wrap;
    margin-bottom: var(--remind-space-4);
    padding: var(--remind-space-3) var(--remind-space-4);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-medium);
    background: var(--remind-surface-subtle);
}

.fluent-message-success {
    border-color: var(--remind-success);
    background: var(--remind-success-surface);
}

.fluent-message-danger {
    border-color: var(--remind-danger);
}

.fluent-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    margin-left: var(--remind-space-2);
    padding: 1px 8px;
    border-radius: 999px;
    background: var(--remind-surface-hover);
    color: var(--remind-text-secondary);
    font-size: 12px;
    font-weight: 600;
}

input:not([type='checkbox']):not([type='radio']),
select,
textarea {
    width: 100%;
    min-height: 36px;
    padding: 6px 10px;
    border: 1px solid var(--remind-border);
    border-radius: var(--remind-radius-small);
    background: var(--remind-surface);
    color: var(--remind-text);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--remind-brand);
    box-shadow: 0 0 0 1px var(--remind-brand);
    outline: 0;
}

input[type='checkbox'] {
    accent-color: var(--remind-brand);
}

.fluent-menu,
.remind-row-menu {
    position: relative;
}

.fluent-menu > summary,
.remind-row-menu > summary {
    list-style: none;
}

.fluent-menu > summary::-webkit-details-marker,
.remind-row-menu > summary::-webkit-details-marker {
    display: none;
}

.fluent-menu-list {
    position: absolute;
    z-index: 20;
    top: calc(100% + 4px);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: var(--remind-space-1);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-medium);
    background: var(--remind-surface);
    box-shadow: var(--remind-shadow-16);
}

.fluent-menu-list button,
.fluent-menu-list a {
    display: block;
    width: 100%;
    min-height: 32px;
    padding: 6px 10px;
    border: 0;
    border-radius: var(--remind-radius-small);
    background: transparent;
    color: var(--remind-text);
    text-align: left;
    text-decoration: none;
}

.fluent-menu-list button:hover,
.fluent-menu-list a:hover {
    background: var(--remind-surface-hover);
}

.remind-commandbar {
    align-items: flex-start;
    margin-bottom: var(--remind-space-4);
}

.remind-commandbar-actions,
.remind-commandbar-utilities,
.remind-button-row {
    display: flex;
    align-items: center;
    gap: var(--remind-space-2);
    flex-wrap: wrap;
}

.remind-commandbar-utilities {
    justify-content: flex-end;
}

.remind-view-picker select {
    min-width: 220px;
    font-weight: 600;
}

.remind-search {
    position: relative;
    width: min(320px, 100%);
}

.remind-search input[type='search'] {
    width: 100%;
    padding-inline: 40px 36px;
    appearance: none;
}

.remind-search input[type='search']::-webkit-search-decoration,
.remind-search input[type='search']::-webkit-search-cancel-button {
    appearance: none;
}

.remind-search-icon,
.remind-search-clear {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.remind-search-icon {
    left: 12px;
    width: 16px;
    height: 16px;
    color: var(--remind-text-secondary);
    fill: none;
    pointer-events: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.75;
}

.remind-search-clear {
    right: 4px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: var(--remind-radius-small);
    background: transparent;
    color: var(--remind-text-secondary);
}

.remind-search-clear:hover {
    background: var(--remind-surface-hover);
    color: var(--remind-text);
}

.remind-status {
    min-height: 20px;
    margin-bottom: var(--remind-space-2);
    color: var(--remind-text-secondary);
}

.remind-status[data-tone='danger'],
.remind-field-error {
    color: var(--remind-danger);
}

.remind-status[data-tone='success'] {
    color: var(--remind-success);
}

.remind-list {
    position: relative;
    min-height: 120px;
    /* Action menus extend beyond their table row. Using overflow-x: auto also
       computes vertical overflow to auto, which clips every item after the
       first one. The table is fixed-width on desktop and becomes cards on
       narrow screens, so this wrapper does not need to scroll. */
    overflow: visible;
}

.remind-list[aria-busy='true']::after,
.remind-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--remind-border);
    border-top-color: var(--remind-brand);
    border-radius: 50%;
    animation: remind-spin 0.8s linear infinite;
}

.remind-list[aria-busy='true']::after {
    position: absolute;
    top: 48px;
    left: 50%;
    content: '';
}

.remind-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.remind-table th,
.remind-table td {
    padding: var(--remind-space-3) var(--remind-space-4);
    border-bottom: 1px solid var(--remind-border-subtle);
    text-align: left;
    vertical-align: top;
}

.remind-table th {
    color: var(--remind-text-secondary);
    font-size: 12px;
    font-weight: 600;
}

.remind-table th:nth-child(2),
.remind-table td:nth-child(2) {
    width: 190px;
}

.remind-conversation-table th:nth-child(3),
.remind-conversation-table td:nth-child(3) {
    width: 150px;
}

.remind-actions-column {
    width: 52px;
    text-align: right !important;
}

.remind-reminder-content p:last-child {
    margin-bottom: 0;
}

.remind-row-menu .fluent-menu-list {
    top: 30px;
}

.remind-row-menu[open] {
    z-index: 15;
}

.remind-empty-state {
    max-width: 520px;
    margin: var(--remind-space-8) auto;
    padding: var(--remind-space-6);
    text-align: center;
}

.remind-empty-icon,
.remind-success-state > span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--remind-space-4);
    border-radius: 50%;
    background: var(--remind-surface-hover);
    color: var(--remind-brand);
    font-size: 24px;
}

.remind-empty-state h2 {
    margin-bottom: var(--remind-space-2);
    font-size: 20px;
}

.remind-empty-state p {
    color: var(--remind-text-secondary);
}

.remind-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--remind-space-4);
    padding-top: var(--remind-space-4);
}

.remind-section-header,
.remind-contact-header {
    margin-bottom: var(--remind-space-6);
}

.remind-section-header h2,
.remind-contact-header h2 {
    margin-bottom: 0;
    font-size: 20px;
}

.remind-settings {
    max-width: 900px;
}

.remind-settings-status {
    min-height: 20px;
    margin-top: var(--remind-space-2) !important;
    color: var(--remind-text-secondary);
    font-size: 13px;
}

.remind-settings-status[data-tone='success'] {
    color: var(--remind-success);
}

.remind-settings-status[data-tone='danger'] {
    color: var(--remind-danger);
}

.remind-setting-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.7fr);
    gap: var(--remind-space-6);
    align-items: center;
    min-height: 72px;
    padding: var(--remind-space-4) 0;
    border-bottom: 1px solid var(--remind-border-subtle);
}

.remind-setting-row label,
.remind-setting-row strong {
    display: block;
    color: var(--remind-text);
    font-weight: 600;
}

.remind-setting-row p,
.remind-setting-row small {
    display: block;
    margin: var(--remind-space-1) 0 0;
    color: var(--remind-text-secondary);
    font-size: 13px;
}

.remind-toggle-row {
    cursor: pointer;
}

.remind-toggle-row > input[type='checkbox'] {
    position: relative;
    justify-self: end;
    width: 40px;
    height: 20px;
    margin: 0;
    border: 1px solid var(--remind-border);
    border-radius: 10px;
    appearance: none;
    background: var(--remind-surface-pressed);
}

.remind-toggle-row > input[type='checkbox']::before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--remind-text-secondary);
    content: '';
    transition: transform 120ms ease;
}

.remind-toggle-row > input[type='checkbox']:checked {
    border-color: var(--remind-brand);
    background: var(--remind-brand);
}

.remind-toggle-row > input[type='checkbox']:checked::before {
    background: var(--remind-on-brand);
    transform: translateX(20px);
}

.remind-form-actions {
    display: flex;
    align-items: center;
    gap: var(--remind-space-3);
    padding-top: var(--remind-space-5);
}

.remind-contact {
    max-width: 720px;
    margin: 0 auto;
}

.remind-field {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--remind-space-5);
    align-items: start;
    margin-bottom: var(--remind-space-5);
}

.remind-field > label {
    padding-top: 7px;
    font-weight: 600;
}

.remind-field-help,
.remind-optional,
.remind-fine-print {
    display: block;
    margin-top: var(--remind-space-1);
    color: var(--remind-text-secondary);
    font-size: 12px;
}

.remind-field-error {
    display: block;
    min-height: 20px;
    margin-top: var(--remind-space-1);
}

.fluent-dialog {
    width: min(520px, calc(100vw - 32px));
    padding: var(--remind-space-5);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-large);
    background: var(--remind-surface);
    color: var(--remind-text);
    box-shadow: var(--remind-shadow-16);
}

.fluent-dialog-wide {
    width: min(780px, calc(100vw - 32px));
}

.fluent-dialog::backdrop {
    background: rgba(0, 0, 0, 0.45);
}

.fluent-dialog-header {
    margin-bottom: var(--remind-space-5);
}

.fluent-dialog-header h2 {
    margin: 0;
    font-size: 20px;
}

.fluent-dialog-actions {
    justify-content: flex-end;
    margin-top: var(--remind-space-5);
}

.remind-table-scroll {
    overflow-x: auto;
}

.remind-subscription {
    min-width: 0;
}

.remind-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--remind-space-4);
    margin-bottom: var(--remind-space-8);
}

.remind-price-card,
.remind-purchase-card,
.remind-account-card {
    padding: var(--remind-space-5);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-large);
    background: var(--remind-surface);
}

.remind-price-card {
    display: flex;
    flex-direction: column;
    gap: var(--remind-space-5);
}

.remind-price-card.is-featured {
    border-color: var(--remind-brand);
    box-shadow: 0 0 0 1px var(--remind-brand);
}

.remind-price-card ul {
    flex: 1;
    margin: 0;
    padding-left: 20px;
    color: var(--remind-text-secondary);
}

.remind-price-plan {
    margin-bottom: var(--remind-space-2);
    font-size: 18px;
    font-weight: 600;
}

.remind-price {
    display: flex;
    align-items: baseline;
    gap: var(--remind-space-1);
    margin-bottom: 0;
}

.remind-price span {
    font-size: 28px;
    font-weight: 600;
}

.remind-price small,
.remind-price-secondary {
    color: var(--remind-text-secondary);
}

.remind-purchase-card {
    max-width: 900px;
    margin: 0 auto var(--remind-space-8);
}

.remind-purchase-heading {
    margin-bottom: var(--remind-space-6);
}

.remind-purchase-heading h2,
.remind-account-card h2,
.remind-faq h2 {
    margin-bottom: 0;
    font-size: 20px;
}

.remind-purchase-grid,
.remind-account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--remind-space-6);
}

.remind-seat-control > label {
    font-weight: 600;
}

.remind-seat-control > p {
    color: var(--remind-text-secondary);
}

.remind-number-stepper {
    display: grid;
    grid-template-columns: 36px 90px 36px;
    gap: var(--remind-space-2);
    align-items: center;
}

.remind-number-stepper input {
    text-align: center;
}

.remind-purchase-options {
    display: grid;
    gap: var(--remind-space-3);
}

.remind-checkbox {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: var(--remind-space-2);
    align-items: start;
    cursor: pointer;
}

.remind-checkbox input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
}

.remind-subscribe-button {
    margin-top: var(--remind-space-6);
}

.remind-account-grid {
    margin-bottom: var(--remind-space-8);
}

.remind-description-list {
    margin: var(--remind-space-5) 0;
}

.remind-description-list > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--remind-space-4);
    padding: var(--remind-space-2) 0;
    border-bottom: 1px solid var(--remind-border-subtle);
}

.remind-description-list dt {
    color: var(--remind-text-secondary);
}

.remind-description-list dd {
    margin: 0;
    text-align: right;
}

.remind-disclosure {
    margin-top: var(--remind-space-5);
    padding-top: var(--remind-space-4);
    border-top: 1px solid var(--remind-border-subtle);
}

.remind-disclosure summary,
.remind-faq summary {
    font-weight: 600;
}

.remind-copy-value {
    display: block;
    max-width: 100%;
    padding: var(--remind-space-3);
    overflow-wrap: anywhere;
    border-radius: var(--remind-radius-small);
    background: var(--remind-surface-subtle);
}

.remind-faq {
    max-width: 900px;
    margin: 0 auto;
}

.remind-faq h2 {
    margin-bottom: var(--remind-space-4);
}

.remind-faq details {
    padding: var(--remind-space-4) 0;
    border-bottom: 1px solid var(--remind-border-subtle);
}

.remind-faq details p {
    margin: var(--remind-space-3) 0 0;
    color: var(--remind-text-secondary);
}

.remind-popup {
    min-height: 100vh;
}

.remind-popup-content {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: var(--remind-space-6);
}

.remind-success-state {
    display: grid;
    place-items: center;
    align-content: center;
    min-height: 100vh;
    padding: var(--remind-space-6);
    text-align: center;
}

.remind-success-state h1 {
    margin-bottom: var(--remind-space-2);
    font-size: 24px;
}

.remind-success-state p {
    color: var(--remind-text-secondary);
}

.remind-login {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: var(--remind-space-6);
}

.remind-login-layout,
.remind-login-card {
    width: min(440px, 100%);
}

.remind-login-card {
    padding: var(--remind-space-8);
    border: 1px solid var(--remind-border-subtle);
    border-radius: var(--remind-radius-large);
    background: var(--remind-surface);
    box-shadow: var(--remind-shadow-4);
}

.remind-login-brand {
    display: block;
    margin-bottom: var(--remind-space-6);
}

.remind-login-brand img {
    display: block;
    width: 64px;
    height: 64px;
}

.remind-login-copy {
    margin-bottom: var(--remind-space-6);
}

.remind-login-copy h1 {
    margin-bottom: var(--remind-space-2);
    font-size: 24px;
}

.remind-login-copy > p:last-child,
.remind-disclosure p {
    color: var(--remind-text-secondary);
}

.remind-login-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: var(--remind-space-5);
}

.remind-microsoft-signin {
    padding: 0;
    border: 0;
    background: transparent;
}

.remind-microsoft-signin img {
    display: block;
    max-width: 100%;
}

.remind-callout {
    padding: var(--remind-space-3);
    border: 1px solid var(--remind-border);
    border-radius: var(--remind-radius-medium);
    background: var(--remind-warning-surface);
}

@keyframes remind-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767.98px) {
    .remind-shell,
    .remind-popup-content,
    .remind-support-shell {
        padding: var(--remind-space-4);
    }

    .remind-support-card .remind-panel-body {
        padding: var(--remind-space-5);
    }

    .remind-tour-slide {
        min-height: 0;
    }

    .remind-tour-image {
        max-height: 220px;
    }

    .remind-tour-finish {
        min-height: 360px;
    }

    .remind-navigation,
    .remind-commandbar,
    .remind-purchase-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .remind-navigation {
        align-items: flex-start;
    }

    .remind-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .fluent-menu {
        align-self: flex-end;
        margin-top: -48px;
    }

    .remind-search,
    .remind-view-picker,
    .remind-view-picker select {
        width: 100%;
    }

    .remind-commandbar-utilities {
        justify-content: flex-start;
        width: 100%;
    }

    .remind-panel-body {
        padding: var(--remind-space-4);
    }

    .remind-table thead {
        display: none;
    }

    .remind-table,
    .remind-table tbody,
    .remind-table tr,
    .remind-table td {
        display: block;
        width: 100% !important;
    }

    .remind-table tr {
        position: relative;
        padding: var(--remind-space-3) 44px var(--remind-space-3) 0;
        border-bottom: 1px solid var(--remind-border-subtle);
    }

    .remind-table td {
        padding: var(--remind-space-1) 0;
        border: 0;
    }

    .remind-table td[data-label]:not(:first-child):not(.remind-actions-column)::before {
        color: var(--remind-text-secondary);
        content: attr(data-label) ': ';
        font-size: 12px;
        font-weight: 600;
    }

    .remind-table .remind-actions-column {
        position: absolute;
        top: var(--remind-space-3);
        right: 0;
    }

    .remind-row-menu .fluent-menu-list {
        right: 0;
    }

    .remind-setting-row,
    .remind-field,
    .remind-purchase-grid,
    .remind-account-grid,
    .remind-pricing-grid {
        grid-template-columns: 1fr;
    }

    .remind-toggle-row {
        grid-template-columns: 1fr 44px;
    }

    .remind-field {
        gap: var(--remind-space-2);
    }

    .remind-field > label {
        padding-top: 0;
    }

    .remind-pricing-grid {
        gap: var(--remind-space-3);
    }
}

@media (max-width: 420px) {
    .remind-shell,
    .remind-popup-content,
    .remind-login {
        padding: var(--remind-space-3);
    }

    .remind-panel {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .remind-login-card {
        padding: var(--remind-space-5);
    }

    .remind-button-row,
    .remind-settings-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (forced-colors: active) {
    .remind-toggle-row > input[type='checkbox'] {
        appearance: auto;
    }

    .remind-panel,
    .remind-price-card,
    .remind-purchase-card,
    .remind-account-card,
    .fluent-dialog,
    .fluent-message {
        border: 1px solid CanvasText;
    }
}
