.map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 2px 12px #1018281f;
}
.map__canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.map__message {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    text-align: center;
    background: #101828d1;
    color: #f5f5ff;
    font-weight: 500;
}
.map__message--error {
    background: #d92d20d9;
}
.map__info-window {
    font-size: 0.9rem;
    max-width: 200px;
}
.map__info-window p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
}
.map__marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3cff, #4b6cff);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px #11182740;
}
.info {
    display: grid;
    gap: 1.5rem;
}
.info__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.info__header-text {
    flex: 1;
    display: grid;
    gap: 0.4rem;
}
.info__title-input {
    border: 1px solid rgba(127, 90, 240, 0.25);
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #16192c;
    background: #fff;
}
.info__title-input:focus {
    outline: none;
    border-color: #7f5af099;
    box-shadow: 0 0 0 3px #7f5af02e;
}
.info__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #7f7f92;
    margin: 0 0 0.4rem;
}
.info__header h2 {
    margin: 0;
    font-size: 1.4rem;
}
.info__create {
    border: none;
    background: #16192c;
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
.info__section {
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 1px 6px #0f172a0d;
    display: grid;
    gap: 0.75rem;
}
.info__section h3 {
    margin: 0;
}
.info__section--summary p {
    margin: 0;
    line-height: 1.5;
}
.info__summary-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(127, 90, 240, 0.2);
    background: #f9f9ff;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #16192c;
    resize: vertical;
}
.info__summary-input:focus {
    outline: none;
    border-color: #7f5af08c;
    box-shadow: 0 0 0 3px #7f5af02e;
    background: #fff;
}
.info__meta {
    font-size: 0.75rem;
    color: #7f7f92;
}
.info__summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.info__pdf-button {
    border: none;
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px #7f5af038;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info__pdf-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px #7f5af047;
}
.info__delete-plan {
    align-self: flex-start;
    border: 1px solid rgba(228, 56, 94, 0.3);
    background: #e4385e14;
    color: #c02246;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.info__delete-plan:hover {
    background: #e4385e29;
}
.info__section--stops {
    gap: 1rem;
}
.info__stops {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.info__stop-card {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 1px 4px #0f172a14;
}
.info__stop-card:not(:last-child) {
    margin-bottom: 0.25rem;
}
.info__stop-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.2rem;
}
.info__stop-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 3px solid #1d2145;
    background: #fff;
}
.info__stop-line {
    flex: 1;
    width: 2px;
    margin-top: 0.4rem;
    background: repeating-linear-gradient(
        to bottom,
        #203dff99,
        #203dff99 6px,
        #203dff1a 6px,
        #203dff1a 12px
    );
}
.info__stop-content {
    display: grid;
    gap: 0.3rem;
    align-content: start;
}
.info__stop-title {
    font-weight: 650;
    font-size: 1rem;
    color: #1d2145;
}
.info__stop-desc {
    font-size: 0.86rem;
    color: #4d4d6d;
    line-height: 1.45;
}
.info__stop-coordinates {
    font-size: 0.74rem;
    color: #7f7f92;
    letter-spacing: 0.05em;
}
.info__stop-connector {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.6rem;
    margin-top: 0.45rem;
    font-size: 0.78rem;
    color: #1d2145bf;
    align-items: center;
}
.info__connector-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #203dff1f;
    border: 1px solid rgba(32, 61, 255, 0.35);
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #203dffd9;
}
.info__connector-mode {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
}
.info__connector-metrics {
    display: block;
    font-size: 0.75rem;
    color: #1d21459e;
}
.info__connector-note {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: #1d21457a;
    line-height: 1.3;
}
.info__stop-duration {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a3fa6;
}
.info__plans {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.info__plan-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.info__plan-remove {
    border: none;
    background: #0000000a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    color: #5a5b70;
    transition: background 0.2s ease, color 0.2s ease;
}
.info__plan-remove:hover {
    background: #e4385e1f;
    color: #c02246;
}
.info__history-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}
.info__section--history {
    gap: 1rem;
}
.info__folder-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #7f7f92;
}
.info__folder-select {
    border-radius: 10px;
    border: 1px solid rgba(127, 90, 240, 0.25);
    padding: 0.35rem 0.6rem;
    font-size: 0.85rem;
    background: #f5f7ff;
    color: #2d2f44;
}
.info__plans--scroll::-webkit-scrollbar {
    width: 6px;
}
.info__plans--scroll::-webkit-scrollbar-thumb {
    background: #7f5af066;
    border-radius: 999px;
}
.info__plan-tags {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.info__plan-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #2cb1bc2e;
    color: #0b7285;
    font-size: 0.7rem;
    font-weight: 600;
}
.info__plan-tag--empty {
    background: #7f5af026;
    color: #4a3fa6;
}
.info__history-hint {
    font-size: 0.75rem;
    color: #8a8aa0;
}
.info__plan {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(127, 90, 240, 0.2);
    background: #f7f7fb;
    padding: 0.7rem;
    border-radius: 12px;
    display: grid;
    gap: 0.2rem;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.info__plan:hover {
    border-color: #7f5af099;
    box-shadow: 0 4px 10px #7f5af01f;
}
.info__plan--active {
    border-color: #7f5af0;
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
}
.info__plan-title {
    font-weight: 600;
}
.info__plan-meta {
    font-size: 0.75rem;
    opacity: 0.8;
}
.info__empty {
    color: #7f7f92;
}
.advisor {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 1px 6px #0f172a0f;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-height: 36vh;
    height: 36vh;
    max-height: 36vh;
    overflow: hidden;
}
.advisor__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.advisor__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    margin: 0;
    color: #7f7f92;
}
.advisor__header h3 {
    margin: 0.2rem 0 0;
}
.advisor__loading,
.advisor__placeholder,
.advisor__error {
    border-radius: 14px;
    padding: 1rem;
    background: #7f5af014;
    color: #4d4d6d;
}
.advisor__error {
    background: #ef44441f;
    color: #7a1c1c;
    border-left: 4px solid #ef4444;
}
.advisor__content {
    display: grid;
    gap: 1.4rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
}
.advisor__summary {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.advisor__grid {
    display: grid;
    gap: 1.2rem;
}
@media (min-width: 720px) {
    .advisor__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
.advisor__section h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: #16192c;
}
.advisor__section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}
.advisor__placeholder ol {
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.3rem;
    color: #4d4d6d;
    font-size: 0.9rem;
}
.advisor__item {
    position: relative;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #7f5af014;
    color: #1d2145;
    font-size: 0.9rem;
    cursor: default;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
    outline: none;
}
.advisor__item--interactive {
    cursor: pointer;
}
.advisor__item--interactive:focus,
.advisor__item--interactive:hover {
    transform: translateY(-2px);
    border-color: #7f5af066;
    box-shadow: 0 12px 24px #7f5af02e;
    color: #fff;
    background: linear-gradient(129deg, #7f5af0d1, #2cb1bcc7);
}
.advisor__item-name {
    display: block;
    font-weight: 600;
    color: inherit;
}
.advisor__item-actions {
    margin-top: 0.65rem;
}
.advisor__add-button {
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(129deg, #7f5af0eb, #2cb1bcd9);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.advisor__add-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.advisor__add-button:not(:disabled):hover,
.advisor__add-button:not(:disabled):focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px #4055d652;
    outline: none;
}
.advisor__tooltip {
    position: absolute;
    inset: auto auto -10px 50%;
    transform: translate(-50%, 100%);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    background: #141635;
    color: #f6f7ff;
    font-size: 0.85rem;
    display: grid;
    gap: 0.25rem;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    box-shadow: 0 12px 24px #00000040;
    z-index: 5;
}
.advisor__tooltip strong {
    font-size: 0.9rem;
    color: #fff;
}
.advisor__tooltip span {
    color: #f6f7ffd9;
}
.advisor__tooltip-rating {
    font-weight: 600;
    color: #fff;
}
.advisor__tooltip-price,
.advisor__tooltip-address,
.advisor__tooltip-status {
    color: #f6f7ffe6;
}
.advisor__item:hover .advisor__tooltip,
.advisor__item:focus .advisor__tooltip {
    opacity: 1;
    transform: translate(-50%, calc(100% + 6px));
}
.advisor__empty-item {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    background: #7f5af01f;
    color: #4d4d6d;
    font-size: 0.85rem;
}
@media (max-width: 900px) {
    .advisor {
        order: 3;
    }
}
@media (max-width: 1100px) {
    .advisor {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .advisor__content {
        overflow: visible;
        padding-right: 0;
    }
}
.assistant {
    background: #fff;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 1px 18px #0f172a1f;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
}
.assistant__header {
    display: grid;
    gap: 0.5rem;
}
.assistant__header h3 {
    margin: 0;
}
.assistant__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: #2cb1bc;
    margin: 0;
}
.assistant__suggestions {
    display: grid;
    gap: 0.4rem;
}
.assistant__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.assistant__chip {
    border: none;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: #2cb1bc24;
    color: #0d1a2b;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.assistant__chip:hover:not(:disabled) {
    background: #7f5af02e;
}
.assistant__chip:disabled {
    opacity: 0.6;
    cursor: default;
}
.assistant__messages {
    flex: 1;
    min-height: 220px;
    background: #f4f6ffbf;
    border-radius: 18px;
    padding: 1rem;
    overflow-y: auto;
    display: grid;
    gap: 0.75rem;
}
.assistant__messages::-webkit-scrollbar {
    width: 6px;
}
.assistant__messages::-webkit-scrollbar-thumb {
    background: #586eb466;
    border-radius: 999px;
}
.assistant__message {
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 16px #0f172a1f;
    max-width: 100%;
    white-space: pre-wrap;
}
.assistant__message--user {
    justify-self: end;
    background: linear-gradient(135deg, #1a3cff, #4b6cff);
    color: #fff;
}
.assistant__message--assistant {
    justify-self: start;
}
.assistant__message-role {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}
.assistant__message--user .assistant__message-role {
    color: #ffffffbf;
}
.assistant__message--assistant .assistant__message-role {
    color: #425067;
}
.assistant__message-content {
    font-size: 0.92rem;
    line-height: 1.4;
}
.assistant__error {
    background: #d92d201f;
    color: #9f1c0f;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
}
.assistant__form {
    display: grid;
    gap: 0.6rem;
}
.assistant__textarea {
    width: 100%;
    min-height: 90px;
    border-radius: 14px;
    border: 1px solid rgba(13, 26, 43, 0.14);
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border 0.2s ease;
}
.assistant__textarea:focus {
    outline: none;
    border-color: #7f5af0;
    box-shadow: 0 0 0 3px #7f5af02e;
}
.assistant__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.assistant__hint {
    font-size: 0.75rem;
    color: #6c7793;
}
.assistant__submit {
    border: none;
    border-radius: 12px;
    background: #7f5af0;
    color: #fff;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: transform 0.15s ease;
}
.assistant__submit:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}
.assistant__submit:not(:disabled):hover {
    transform: translateY(-1px);
}
@media (max-width: 1100px) {
    .assistant {
        max-height: none;
    }
}
.to-go {
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 1px 6px #0f172a0f;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
}
.to-go__header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    flex-shrink: 0;
}
.to-go__header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
    position: relative;
}
.to-go__header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    position: relative;
    min-height: 28px;
}
.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
}
.to-go__draft-indicator {
    position: absolute;
    right: 100%;
    margin-right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: #e4385e;
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.to-go__button {
    border: none;
    border-radius: 10px;
    padding: 0.4rem 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}
.to-go__button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}
.to-go__button:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px #7f5af040;
}
.to-go__button--secondary {
    background: #e8ebff;
    color: #2d2f44;
    border: 1px solid rgba(127, 90, 240, 0.25);
}
.to-go__button--secondary:not(:disabled):hover {
    background: #7f5af02e;
}
.to-go__button--secondary.full-width {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-top: 0.25rem;
}
.to-go__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #7f7f92;
    margin: 0 0 0.4rem;
}
.to-go__header h3 {
    margin: 0;
    font-size: 1.4rem;
}
.to-go__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    padding-right: 0.25rem;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 0;
}
.to-go__item {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(127, 90, 240, 0.18);
    background: #f5f7ff;
    box-shadow: 0 1px 3px #7f5af014;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    flex: 0 0 auto;
}
.to-go__item--selected {
    border-color: #7f5af0;
    box-shadow: 0 12px 30px #7f5af038;
    background: linear-gradient(135deg, #7f5af029, #2cb1bc29);
}
.to-go__item--open {
    border-color: #7f5af06b;
    box-shadow: 0 14px 32px #7f5af03d;
}
.to-go__item-header {
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}
.to-go__item-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.to-go__step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #4a3fa6;
    flex-shrink: 0;
}
.to-go__time-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #7f5af01a;
    color: #4a3fa6;
    font-size: 0.75rem;
    font-weight: 600;
    max-width: fit-content;
}
.to-go__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-width: fit-content;
}
.to-go__chip--new {
    background: #2cb1bc1f;
    color: #1d7b84;
}
.to-go__chip--removed {
    background: #e4385e1f;
    color: #c02c56;
}
.to-go__item-select {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    text-align: left;
    flex: 1;
    width: 100%;
}
.to-go__title {
    font-weight: 600;
    color: #16192c;
    font-size: 1.02rem;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: break-word;
}
.to-go__item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.to-go__action {
    border: 1px solid rgba(127, 90, 240, 0.2);
    background: #fff;
    color: #2d2f44;
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}
.to-go__action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.to-go__action--toggle {
    border-color: #7f5af040;
    background: #7f5af014;
    color: #4a3fa6;
}
.to-go__action--toggle:hover {
    background: #7f5af02e;
}
.to-go__action--danger:not(:disabled) {
    border-color: #e4385e59;
    color: #e4385e;
}
.to-go__action--danger:not(:disabled):hover {
    background: #e4385e1f;
}
.to-go__item-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: grid;
    gap: 0.75rem;
    padding: 0 1rem;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
}
.to-go__item-details--open {
    padding: 0 1rem 1rem;
    max-height: 800px;
    opacity: 1;
}
.to-go__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #3a3e5b;
}
.to-go__field > span {
    font-weight: 600;
}
.to-go__field input,
.to-go__field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(127, 90, 240, 0.2);
    background: #fff;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1f2237;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}
.to-go__field textarea {
    resize: vertical;
    min-height: 70px;
}
.to-go__field input:focus,
.to-go__field textarea:focus {
    outline: none;
    border-color: #7f5af0;
    box-shadow: 0 0 0 3px #7f5af02e;
}
.to-go__field input:disabled,
.to-go__field textarea:disabled {
    background: #f3f5ff;
    border-color: #7f5af01f;
    color: #7c7f9a;
}
.to-go__field-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    align-items: end;
}
.to-go__field-grid--coordinates {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.to-go__field--compact > span {
    font-weight: 500;
}
.to-go__action--ghost {
    border-radius: 10px;
    border: 1px solid rgba(127, 90, 240, 0.18);
    background: #7f5af014;
    color: #4a3fa6;
    padding: 0.55rem 0.85rem;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.to-go__action--ghost:hover:not(:disabled) {
    background: #7f5af02e;
    border-color: #7f5af052;
}
.to-go__suggestions {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.35rem 0.35rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(127, 90, 240, 0.18);
    box-shadow: 0 8px 20px #16192c14;
    display: grid;
    gap: 0.35rem;
}
.to-go__suggestion {
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 10px;
    text-align: left;
    padding: 0.45rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #1f2237;
}
.to-go__suggestion:hover,
.to-go__suggestion:focus-visible {
    background: #7f5af01f;
    outline: none;
}
.to-go__suggestion-primary {
    font-weight: 600;
}
.to-go__suggestion-secondary {
    color: #6a6e8f;
    font-size: 0.8rem;
}
.to-go__empty {
    border-radius: 16px;
    border: 1px dashed rgba(127, 90, 240, 0.25);
    padding: 1.25rem;
    text-align: center;
    color: #6a6e8f;
    background: #7f5af00f;
    display: grid;
    gap: 0.75rem;
    flex: 0 0 auto;
}
.to-go__empty button {
    justify-self: center;
}
.to-go__list::-webkit-scrollbar {
    width: 6px;
}
.to-go__list::-webkit-scrollbar-track {
    background: transparent;
}
.to-go__list::-webkit-scrollbar-thumb {
    background: #7f5af040;
    border-radius: 4px;
}
@media (max-width: 1100px) {
    .to-go {
        height: auto;
        max-height: none;
    }
    .to-go__item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .to-go__item-actions {
        width: 100%;
        justify-content: flex-end;
    }
    .to-go__item-select {
        width: 100%;
    }
    .to-go__step {
        width: 32px;
        height: 32px;
    }
    .to-go__button--secondary.full-width {
        font-size: 0.95rem;
        padding: 0.65rem 0.9rem;
    }
}
.manager {
    flex: 1;
    padding: 1.75rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}
.manager__sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 1px 12px #0f172a14;
    display: grid;
    gap: 1rem;
}
.manager__sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.manager__sidebar-header h2 {
    margin: 0;
    font-size: 1.1rem;
}
.manager__add-folder {
    border: none;
    background: #7f5af01f;
    color: #5c3af0;
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.manager__add-folder:hover {
    background: #7f5af038;
}
.manager__folder-form {
    display: grid;
    gap: 0.6rem;
    background: #7f5af00f;
    border-radius: 14px;
    padding: 0.7rem;
    margin-bottom: 0.6rem;
}
.manager__folder-input {
    border-radius: 10px;
    border: 1px solid rgba(127, 90, 240, 0.25);
    padding: 0.5rem 0.6rem;
    background: #fff;
    font-size: 0.9rem;
}
.manager__folder-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.manager__folder-cancel,
.manager__folder-save {
    border-radius: 8px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
}
.manager__folder-cancel {
    border: none;
    background: #1d214514;
    color: #1d2145a6;
}
.manager__folder-save {
    border: none;
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    font-weight: 600;
}
.manager__folder-save[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.manager__folder-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}
.manager__folder {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #7f5af014;
    color: #1d2145;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.manager__folder:hover {
    background: #7f5af02e;
}
.manager__folder--active {
    background: linear-gradient(135deg, #7f5af03d, #2cb1bc3d);
    box-shadow: 0 8px 18px #7f5af02e;
}
.manager__folder-count {
    font-size: 0.8rem;
    color: #1d2145a6;
}
.manager__main {
    display: grid;
    gap: 1.5rem;
}
.manager__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.manager__toolbar h2 {
    margin: 0;
}
.manager__hint {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: #1d214599;
}
.manager__search {
    border-radius: 12px;
    border: 1px solid rgba(127, 90, 240, 0.2);
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    width: 220px;
}
.manager__plan-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.manager__plan-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: 0 1px 12px #0f172a12;
    display: grid;
    gap: 0.75rem;
}
.manager__plan-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.manager__plan-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}
.manager__plan-title-input {
    flex: 1 1 auto;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    color: #1d2145;
}
.manager__plan-title-input:focus {
    outline: none;
    box-shadow: none;
}
.manager__plan-delete {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(200, 30, 70, 0.12);
    background: #e4385e0f;
    color: #c02246;
    font-weight: 700;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}
.manager__plan-delete:hover {
    background: #e4385e1f;
}
.manager__plan-date {
    justify-self: end;
}
.manager__plan-date-input {
    border-radius: 10px;
    border: 1px solid rgba(29, 33, 69, 0.08);
    padding: 0.35rem 0.6rem;
    font-size: 0.82rem;
    background: #fff;
    color: #1d2145d9;
}
.manager__plan-card:hover {
    transform: translateY(-4px);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    box-shadow: 0 12px 30px #0f172a17;
}
.manager__plan-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.manager__plan-header h3 {
    margin: 0;
    font-size: 1.05rem;
}
.manager__plan-date {
    font-size: 0.8rem;
    color: #1d214599;
}
.manager__plan-summary {
    margin: 0;
    font-size: 0.9rem;
    color: #4d4d6d;
    line-height: 1.45;
}
.manager__plan-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #1d2145a6;
}
.manager__plan-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.manager__plan-tags--empty {
    font-size: 0.8rem;
    color: #1d21458c;
}
.manager__plan-tag {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #7f5af029;
    color: #5c3af0;
    font-size: 0.75rem;
    font-weight: 600;
}
.manager__plan-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.manager__plan-select {
    border-radius: 10px;
    border: 1px solid rgba(127, 90, 240, 0.25);
    padding: 0.45rem 0.6rem;
    font-size: 0.85rem;
    min-width: 180px;
}
.manager__plan-remove {
    border: 1px solid rgba(228, 56, 94, 0.3);
    background: #e4385e14;
    color: #c02246;
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.manager__plan-remove[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}
.manager__plan-remove:not([disabled]):hover {
    background: #e4385e29;
}
.manager__empty {
    padding: 2rem;
    border-radius: 16px;
    background: #7f5af014;
    color: #1d214599;
    text-align: center;
}
@media (max-width: 980px) {
    .manager {
        grid-template-columns: 1fr;
    }
    .manager__sidebar {
        position: sticky;
        top: 0;
    }
}
.admin {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2rem;
    padding: 1.75rem 2rem 2.5rem;
    align-items: start;
}
.admin__sidebar {
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 1px 12px #0f172a14;
    display: grid;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.admin__avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(135deg, #2cb1bc, #7f5af0);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    font-weight: 700;
}
.admin__sidebar-info h2 {
    margin: 0;
    font-size: 1.2rem;
}
.admin__sidebar-info p {
    margin: 0.3rem 0 0;
    color: #1d214599;
    font-size: 0.9rem;
}
.admin__content {
    background: #fff;
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 1px 12px #0f172a14;
    display: grid;
    gap: 1.5rem;
}
.admin__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin__header h1 {
    margin: 0;
}
.admin__subtitle {
    margin: 0.3rem 0 0;
    color: #1d214599;
    font-size: 0.95rem;
}
.admin__save {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.admin__save:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px #7f5af033;
}
.admin__section {
    display: grid;
    gap: 1rem;
}
.admin__section h3 {
    margin: 0;
}
.admin__form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.admin__field {
    display: grid;
    gap: 0.45rem;
}
.admin__field--full {
    grid-column: 1 / -1;
}
.admin__field span {
    font-size: 0.85rem;
    color: #1d2145a6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.admin__field input,
.admin__field textarea {
    border-radius: 12px;
    border: 1px solid rgba(127, 90, 240, 0.2);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    background: #f7f7ff;
}
.admin__field input:focus,
.admin__field textarea:focus {
    outline: none;
    border-color: #7f5af08c;
    box-shadow: 0 0 0 3px #7f5af02e;
    background: #fff;
}
.admin__field textarea {
    resize: vertical;
}
.admin__success {
    margin: 0;
    font-size: 0.85rem;
    color: #1c7c54;
    background: #1c7c541f;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    justify-self: flex-start;
}
@media (max-width: 1024px) {
    .admin {
        grid-template-columns: 1fr;
    }
}
.info__create {
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 1px 4px #7f5af014;
}
.info__create:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.info__create:hover:not(:disabled) {
    opacity: 0.9;
}
:root {
    color-scheme: light;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    background: #f2f2f7;
}
.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #16192c;
}
.app__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fff;
    box-shadow: 0 1px 8px #0f172a14;
}
.app__logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    border: none;
    background: none;
    color: #16192c;
    cursor: pointer;
    padding: 0;
}
.app__logo:hover {
    color: #2cb1bc;
}
.app__header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.app__nav-button {
    border-radius: 8px;
    border: 1px solid rgba(127, 90, 240, 0.35);
    background: #7f5af01f;
    color: #5235d4;
    font-weight: 600;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.app__nav-button:hover {
    background: #7f5af033;
    transform: translateY(-1px);
}
.app__profile-button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #2cb1bc, #7f5af0);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app__profile-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px #2cb1bc2e;
}
.app__profile-button--active {
    box-shadow: 0 0 0 3px #7f5af040;
}
.app__profile-icon {
    width: 22px;
    height: 22px;
}
.app__profile-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}
.app__layout {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) minmax(
            260px,
            320px
        );
    gap: 2rem;
    padding: 1.5rem 2rem 0.75rem;
    align-items: stretch;
}
.app__summary {
    background: #f5f5ff;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 1px 12px #0f172a14;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: calc(84vh + 1.5rem);
    max-height: calc(84vh + 1.5rem);
    overflow: hidden;
}
.app__summary .info {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.35rem;
}
.app__content {
    display: grid;
    gap: 1.5rem;
    grid-template-rows: auto auto;
    min-height: 0;
    align-content: start;
}
.app__error {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #ff63471f;
    color: #b42318;
    font-size: 0.95rem;
}
.app__primary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1.5rem;
    align-items: stretch;
    min-height: 0;
}
.app__map {
    background: #fff;
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: 0 1px 12px #0f172a14;
    display: flex;
    align-self: stretch;
    height: 48vh;
    min-height: 48vh;
    max-height: 48vh;
}
.app__map > .map {
    border-radius: 18px;
    height: 100%;
    min-height: 100%;
    flex: 1;
}
.app__to-go {
    min-height: 0;
    display: flex;
    align-self: stretch;
    width: 420px;
    max-width: 100%;
    justify-self: end;
    height: 48vh;
    min-height: 48vh;
    max-height: 48vh;
}
.app__to-go > .to-go {
    width: 100%;
    height: 100%;
}
.app__assistant {
    display: flex;
    width: 100%;
    align-self: stretch;
    min-height: 0;
    flex: 0 1 380px;
    height: calc(84vh + 1.5rem);
    max-height: calc(84vh + 1.5rem);
    box-sizing: border-box;
}
.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1218268c;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2000;
}
.modal {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    width: min(520px, 100%);
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 25px 55px #0f172a40;
}
.modal__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal__title-text {
    font-size: 1.5rem;
    font-weight: 600;
    cursor: text;
    color: #16192c;
}
.modal__title-input {
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    outline: none;
    width: 100%;
    color: #16192c;
}
.modal__fields {
    display: grid;
    gap: 1rem;
}
.modal__row {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
}
.modal__row input[type="text"],
.modal__row input[type="date"] {
    border-radius: 10px;
    border: 1px solid rgba(22, 25, 44, 0.18);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
}
.modal__motivation {
    display: grid;
    gap: 0.75rem;
}
.modal__motivation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.modal__motivation-btn {
    border-radius: 999px;
    border: 1px solid rgba(127, 90, 240, 0.35);
    background: #7f5af01f;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5235d4;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.modal__motivation-btn.selected {
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    border-color: transparent;
}
.modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}
.btn {
    border-radius: 10px;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn--primary {
    background: linear-gradient(135deg, #7f5af0, #2cb1bc);
    color: #fff;
    box-shadow: 0 10px 20px #7f5af040;
}
.btn--primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}
.btn--secondary {
    background: #16192c14;
    color: #404460;
}
.btn:not(:disabled):hover {
    transform: translateY(-1px);
}
.modal__autocomplete {
    position: relative;
    width: 100%;
}
.modal__autocomplete input[type="text"] {
    width: 100%;
}
.modal__suggestions {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(127, 90, 240, 0.22);
    box-shadow: 0 12px 32px #16192c1f;
    max-height: 240px;
    overflow-y: auto;
    z-index: 40;
}
.modal__suggestions li + li {
    margin-top: 0.3rem;
}
.modal__suggestion {
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 12px;
    text-align: left;
    padding: 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    cursor: pointer;
    color: #1f2237;
    font-size: 0.92rem;
}
.modal__suggestion:hover,
.modal__suggestion:focus-visible {
    background: #7f5af01f;
    outline: none;
}
.modal__suggestion-primary {
    font-weight: 600;
}
.modal__suggestion-secondary {
    font-size: 0.8rem;
    color: #646a8c;
}
.btn--primary:not(:disabled):hover {
    box-shadow: 0 14px 28px #7f5af052;
}
@media (max-width: 640px) {
    .modal {
        padding: 1.5rem;
    }
    .modal__row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
@media (max-width: 1100px) {
    .app__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 0.75rem 1.5rem;
    }
    .app__content {
        grid-template-rows: auto auto;
    }
    .app__primary {
        grid-template-columns: 1fr;
    }
    .app__assistant {
        order: 3;
        height: auto;
        max-height: none;
    }
    .app__map,
    .app__to-go {
        height: auto;
        min-height: 420px;
        max-height: none;
    }
    .app__summary {
        height: auto;
        max-height: none;
    }
    .app__summary .info {
        overflow: visible;
        padding-right: 0;
    }
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #f2f2f7;
}
a {
    color: inherit;
}
button,
textarea {
    font-family: inherit;
}
#root {
    min-height: 100vh;
}
