/* Consolidated Styles */

:root {
    --mh-bg: #d1d1cf;
    --mh-bg-light: #f4f4f4;
    --mh-fg: #000;
    --mh-inv: #fff;
    --mh-border: #000;
    --mh-muted: rgba(0, 0, 0, 0.8);
    --mh-soft: rgba(0, 0, 0, 0.05);
    --mh-accent: #00e676;
    --mh-radius: 2px;
    --mh-maxw: 800px;
    --mh-pad: 2rem;
    --mh-gap: 1rem;
    --mh-gap-sm: 0.5rem;
    --mh-neon: #00e676;
    --mh-fail: #ff3b30;
    --mh-black: #000;
    --mh-gray: #f4f4f4;
    --mh-wz-bg: #d1d1cf;
    --mh-wz-text: #000;
    --mh-wz-border: #000;
    --mh-wz-active: #000;
    --mh-wz-active-text: #fff
    }

.mh-conf-wrapper {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--mh-bg);
    color: var(--mh-fg);
    padding: var(--mh-pad);
    max-width: var(--mh-maxw);
    margin: 0 auto;
    border: 1px solid var(--mh-border);
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden
    }

.mh-conf-wrapper.mh-surface-light {
    background-color: var(--mh-bg-light)
    }

.mh-conf-wrapper * {
    box-sizing: border-box
    }

.mh-h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em
    }

.mh-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.5
    }

.mh-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--mh-gap)
    }

.mh-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mh-gap-sm)
    }

.mh-card {
    border: 1px solid var(--mh-border);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    position: relative
    }

.mh-card:hover {
    background-color: var(--mh-soft)
    }

.mh-card.active {
    background-color: var(--mh-fg);
    color: var(--mh-bg);
    border-color: var(--mh-border)
    }

.mh-check-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    display: none
    }

.mh-card.active .mh-check-indicator {
    display: block
    }

.mh-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block
    }

.mh-input-group {
    margin-bottom: 1.5rem
    }

.mh-range-val {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem
    }

input[type="range"] {
    width: 100%;
    accent-color: var(--mh-fg);
    height: 4px;
    background: var(--mh-fg);
    border-radius: 2px;
    outline: none
    }

.mh-select, .mh-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--mh-border);
    border-radius: var(--mh-radius);
    background: #fff;
    color: var(--mh-fg)
    }

.mh-checkbox-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--mh-border);
    padding: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s
    }

.mh-checkbox-wrapper:hover {
    background: var(--mh-soft)
    }

.mh-checkbox-wrapper input {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--mh-fg)
    }

.mh-btn {
    background-color: var(--mh-fg);
    color: var(--mh-inv);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--mh-radius);
    width: 100%;
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s
    }

.mh-btn:hover {
    opacity: 0.8
    }

.mh-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed
    }

.mh-btn-outline {
    background-color: transparent;
    border: 1px solid var(--mh-border);
    color: var(--mh-fg);
    margin-top: 0.5rem
    }

.mh-btn-neon {
    background: var(--mh-fg);
    color: var(--mh-inv);
    border: 1px solid var(--mh-border)
    }

.mh-btn-neon:hover, .mh-btn.mh-btn-neon:hover {
    background: var(--mh-accent);
    color: var(--mh-fg);
    opacity: 1
    }

.mh-btn-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mh-gap-sm)
    }

.mh-btn-row .mh-btn {
    margin-top: 0
    }

.mh-step {
    display: none;
    animation: mhFadeIn 0.4s ease
    }

.mh-step.active {
    display: block
    }

@keyframes mhFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }

.mh-alert {
    background: var(--mh-soft);
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: var(--mh-radius)
    }

.mh-alert-accent {
    border-left: 4px solid var(--mh-accent);
    background: rgba(0, 230, 118, 0.05);
    border-radius: 0
    }

.mh-summary-box {
    border-left: 4px solid var(--mh-border);
    padding-left: 1.5rem;
    margin-bottom: 2rem
    }

.mh-tag {
    display: inline-block;
    background: var(--mh-fg);
    color: var(--mh-inv);
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--mh-radius);
    margin-right: 5px;
    vertical-align: middle
    }

.mh-tag-accent {
    background: var(--mh-accent);
    color: var(--mh-fg);
    padding: 2px 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 600
    }

.mh-info-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--mh-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: var(--mh-fg);
    vertical-align: middle
    }

.mh-info-btn:hover {
    background: var(--mh-fg);
    color: var(--mh-inv)
    }

.mh-modal-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 209, 207, 0.95);
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(2px)
    }

.mh-modal-overlay.open {
    display: flex
    }

.mh-modal-content {
    background: #fff;
    border: 1px solid var(--mh-border);
    padding: 2rem;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }

.mh-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1
    }

.mh-modal-table td {
    padding: 4px 10px 4px 0;
    border-bottom: 1px solid #eee
    }

.mh-text-link {
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block
    }

.mh-hidden {
    display: none !important
    }

.mh-hidden-tool {
    display: none !important
    }

.mh-section-head {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--mh-border);
    padding-bottom: 1rem
    }

.mh-tag-block {
    margin-bottom: 0.5rem
    }

.mh-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
    }

.mh-table, .mh-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
    border: 1px solid var(--mh-border)
    }

.mh-table th, .mh-price-table th {
    background: var(--mh-fg);
    color: var(--mh-inv);
    text-align: left;
    padding: 12px;
    font-size: 0.75rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em
    }

.mh-table td, .mh-price-table td {
    border-bottom: 1px solid #eee;
    padding: 12px;
    font-size: 1rem;
    vertical-align: top
    }

.mh-table tr:last-child td {
    border-bottom: none
    }

.mh-table-striped tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.03)
    }

.mh-price-tag {
    font-weight: 800;
    display: block;
    margin-top: 5px;
    font-size: 1.1rem
    }

.mh-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 1rem
    }

.mh-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--mh-fg);
    opacity: 0.2
    }

.mh-timeline-item {
    position: relative;
    margin-bottom: 1.5rem
    }

.mh-timeline-dot {
    position: absolute;
    left: -30px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--mh-fg);
    color: var(--mh-inv);
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
    }

.mh-timeline-dot.mh-timeline-dot-check {
    width: 26px;
    height: 26px;
    border: 2px solid var(--mh-inv)
    }

.mh-timeline-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.2rem
    }

.mh-timeline-desc {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.4
    }

.mh-text-sm {
    font-size: 0.85rem
    }

.mh-text-xs {
    font-size: 0.75rem
    }

.mh-muted {
    opacity: 0.7
    }

.mh-compass-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--mh-border);
    cursor: pointer;
    transition: 0.2s
    }

.mh-compass-card:hover {
    background: var(--mh-soft)
    }

.mh-compass-card.active {
    background: var(--mh-fg);
    color: var(--mh-inv)
    }

.mh-finance-box {
    background: #fff;
    border: 1px dashed var(--mh-border);
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
    }

.mh-finance-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mh-fg)
    }

.mh-finance-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.7
    }

.mh-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5)
    }

.mh-donut {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#000 0% 0%, #ccc 0% 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
    }

.mh-donut::after {
    content: "";
    width: 70px;
    height: 70px;
    background: var(--mh-bg);
    border-radius: 50%;
    position: absolute
    }

.mh-chart-legend {
    font-size: 0.9rem;
    line-height: 1.6
    }

.mh-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px
    }

.mh-priority-card {
    border-left: 8px solid var(--mh-border)
    }

.mh-priority-card.emergency {
    border-left-color: #f33
    }

.mh-issue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
    display: none
    }

.mh-issue-tag {
    border: 1px dashed var(--mh-border);
    padding: 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer
    }

.mh-issue-tag:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: #f33
    }

.mh-issue-tag.active {
    background: #f33;
    color: #fff;
    border-color: #f33;
    font-weight: 700
    }

.mh-upload-box {
    border: 2px dashed var(--mh-border);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.2s
    }

.mh-upload-box:hover {
    background: var(--mh-soft)
    }

.mh-slot-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s
    }

.mh-slot-list.unlocked {
    opacity: 1;
    pointer-events: all
    }

.mh-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--mh-border);
    cursor: pointer
    }

.mh-slot:hover {
    background: var(--mh-soft)
    }

.mh-slot.active {
    background: var(--mh-fg);
    color: var(--mh-inv)
    }

.mh-slot.prio-slot {
    border-color: #f33;
    background: rgba(255, 51, 51, 0.05)
    }

.mh-slot.prio-slot.active {
    background: #f33;
    color: #fff;
    border-color: #f33
    }

.mh-badge-route {
    background: var(--mh-fg);
    color: var(--mh-inv);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: var(--mh-radius);
    text-transform: uppercase;
    margin-left: 10px
    }

.mh-calendar-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 50;
    padding: 2rem;
    display: none;
    flex-direction: column
    }

.mh-calendar-modal.open {
    display: flex;
    animation: mhFadeIn 0.3s
    }

.mh-cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 1rem
    }

.mh-cal-day {
    border: 1px solid #ddd;
    padding: 10px 5px;
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem
    }

.mh-cal-day.selected {
    background: var(--mh-fg);
    color: var(--mh-inv);
    border-color: var(--mh-fg)
    }

.mh-cal-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1rem
    }

.mh-cal-time {
    border: 1px solid var(--mh-border);
    padding: 10px;
    text-align: center;
    cursor: pointer
    }

.mh-cal-time:hover {
    background: #eee
    }

@media (max-width: 650px) {
    .mh-table-wrap {
        overflow-x: visible
        }
    .mh-table thead, .mh-price-table thead {
        display: none
        }
    .mh-table, .mh-price-table, .mh-table tbody, .mh-price-table tbody, .mh-table tr, .mh-price-table tr, .mh-table td, .mh-price-table td {
        display: block;
        width: 100%
        }
    .mh-table tr, .mh-price-table tr {
        border-bottom: 2px solid var(--mh-border);
        padding: 1rem 0
        }
    .mh-table td, .mh-price-table td {
        border: none;
        padding: 0.5rem 12px
        }
    .mh-table td:first-child, .mh-price-table td:first-child {
        padding-top: 0
        }
    .mh-table td strong, .mh-price-table td strong {
        font-size: 1.2rem;
        text-transform: uppercase
        }
    .mh-price-tag {
        margin-top: 10px;
        padding: 8px;
        background: #f9f9f9;
        display: inline-block;
        width: auto
        }
    }

@media (max-width: 600px) {
    .mh-conf-wrapper {
        padding: 1rem
        }
    .mh-sub {
        margin-bottom: 1.25rem
        }
    .mh-section-head {
        margin-bottom: 1.25rem
        }
    .mh-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem
        }
    .mh-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem
        }
    .mh-card {
        padding: 0.9rem;
        min-height: 90px
        }
    .mh-icon {
        font-size: 1.5rem;
        margin-bottom: 0.35rem
        }
    .mh-compass-card {
        padding: 0.75rem
        }
    .mh-input-group {
        margin-bottom: 1.25rem
        }
    .mh-range-val {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
        gap: 8px
        }
    .mh-btn {
        padding: 0.8rem 1rem;
        margin-top: 0.75rem
        }
    .mh-btn-outline {
        margin-top: 0.5rem
        }
    .mh-chart-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
        }
    .mh-finance-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem
        }
    .mh-modal-overlay {
        padding: 1rem
        }
    .mh-modal-content {
        padding: 1.25rem
        }
    .mh-table th, .mh-table td {
        padding: 8px
        }
    .mh-timeline {
        padding-left: 24px
        }
    .mh-timeline::before {
        left: 8px
        }
    .mh-timeline-dot {
        left: -24px;
        width: 20px;
        height: 20px
        }
    .mh-timeline-dot.mh-timeline-dot-check {
        width: 24px;
        height: 24px
        }
    .mh-cal-grid {
        grid-template-columns: repeat(3, 1fr)
        }
    }

@media (max-width: 380px) {
    .mh-grid-2, .mh-grid-4 {
        grid-template-columns: 1fr
        }
    .mh-cal-grid {
        grid-template-columns: repeat(2, 1fr)
        }
    }

.mh-split-wrap {
    width: 100%;
    max-width: 64rem;
    height: auto;
    margin: 0 auto;
    font-family: "Space Mono", monospace;
    background: #fff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border: 2px solid var(--mh-black);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column
    }

.mh-split-header {
    height: 40px;
    flex-shrink: 0;
    border-bottom: 2px solid var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: #eee;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2
    }

.mh-split-body {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--mh-bg-vgl);
    align-items: start
    }

.mh-split-body.finished {
    grid-template-columns: 0fr 1fr
    }

.mh-zone-active {
    background: #fff;
    border-right: 2px solid var(--mh-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    opacity: 1;
    transition: opacity 0.2s, padding 0.2s;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box
    }

.mh-split-body.finished .mh-zone-active {
    opacity: 0;
    padding: 0;
    border: none;
    min-width: 0;
    height: 0 !important;
    min-height: 0 !important
    }

.mh-label {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px
    }

.mh-zone-list {
    background: var(--mh-gray);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: auto
    }

.mh-list-header-row {
    display: grid;
    grid-template-columns: 1fr 30px 1fr;
    padding: 10px 15px;
    border-bottom: 2px solid var(--mh-black);
    background: #e0e0e0;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center
    }

@media (max-width: 767px) {
    .mh-list-header-row {
        font-size: 0.9rem
        }
    }

.mh-list-scroll-area {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: auto
    }

.mh-clash-box {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center
    }

.mh-text-bad {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #555;
    position: relative;
    opacity: 0;
    transform: translatey(10px);
    transition: 0.3s;
    max-width: 90%
    }

@media (max-width: 767px) {
    .mh-text-bad {
        font-size: 1rem
        }
    }

.mh-text-bad.visible {
    opacity: 1;
    transform: translatey(0)
    }

.mh-text-bad::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 0%;
    height: 3px;
    background: var(--mh-fail);
    transform: rotate(-2deg);
    transition: width 0.3s ease-out
    }

.mh-text-bad.striked {
    opacity: 0.5
    }

.mh-text-bad.striked::after {
    width: 110%
    }

.mh-text-good {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 900;
    color: var(--mh-black);
    background: var(--mh-neon);
    padding: 8px 12px;
    border: 3px solid var(--mh-black);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    margin-top: 5px;
    max-width: 95%
    }

@media (max-width: 767px) {
    .mh-text-good {
        font-size: 1.1rem
        }
    }

.mh-text-good.slam {
    opacity: 1;
    transform: scale(1) rotate(-1deg);
    animation: slamPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    }

@keyframes slamPop {
    50% {
        transform: scale(1.05) rotate(1deg);
        }
    }

.mh-list-item {
    background: #fff;
    border: 1px solid var(--mh-black);
    padding: 8px;
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    align-items: center;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease
    }

.mh-list-item.revealed {
    opacity: 1;
    transform: translatex(0);
    animation: itemSlideIn 0.4s forwards
    }

@media (max-width: 767px) {
    .mh-list-item {
        font-size: 0.75rem;
        display: none
        }
    .mh-list-item.revealed {
        display: grid
        }
    }

@keyframes itemSlideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
        } to {
        opacity: 1;
        transform: translateX(0);
        }
    }

.li-bad {
    color: #999;
    text-align: right;
    text-decoration: line-through;
    text-decoration-color: var(--mh-fail);
    padding-right: 5px;
    line-height: 1.3
    }

.li-sep {
    text-align: center;
    color: #ddd;
    font-weight: 300
    }

.li-good {
    font-weight: 700;
    color: #000;
    padding-left: 5px;
    border-left: 3px solid var(--mh-neon);
    line-height: 1.3
    }

.mh-split-body.finished .mh-list-item {
    padding: 12px;
    font-size: 0.9rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 5px
    }

@media (max-width: 767px) {
    .mh-split-body.finished .mh-list-item {
        font-size: 0.8rem;
        padding: 10px
        }
    }

@media (max-width: 767px) {
    .mh-split-wrap {
        min-height: 500px
        }
    .mh-split-body {
        grid-template-columns: 1fr;
        grid-template-rows: min-content 1fr;
        align-items: stretch
        }
    .mh-zone-active {
        border-right: none;
        border-bottom: 2px solid var(--mh-black);
        min-height: 250px;
        height: auto !important
        }
    .mh-zone-list {
        min-height: 300px
        }
    .mh-label {
        font-size: 0.9rem
        }
    .mh-split-body.finished {
        grid-template-columns: 1fr;
        grid-template-rows: 0fr 1fr
        }
    .mh-split-body.finished .mh-zone-active {
        min-height: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        border-bottom: none;
        opacity: 0
        }
    }

.mh-switcher-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #000
    }

.mh-switcher-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    min-width: 200px
    }

.mh-switcher-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.6;
    margin-top: 4px;
    text-transform: none
    }

.mh-nav-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    user-select: none
    }

.mh-nav-btn:hover {
    background: #000;
    color: #fff
    }

.mh-nav-btn:active {
    opacity: 0.8
    }

.mh-tool-content {
    animation: mhFadeIn 0.5s ease forwards
    }

.mh-roi-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    padding: 0;
    background: transparent;
    font-family: system-ui, -apple-system, sans-serif;
    color: #000;
    position: relative
    }

.mh-roi-header {
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    min-height: 1px
    }

.mh-roi-h3 {
    font-family: "Thunder", sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0
    }

.mh-roi-label-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1
    }

.mh-roi-label {
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600
    }

.mh-info-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease
    }

.mh-info-trigger:hover {
    transform: scale(1.1)
    }

.mh-info-trigger svg {
    width: 16px;
    height: 16px;
    fill: #000
    }

.mh-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-family: "Space Mono", monospace;
    font-weight: 600;
    font-size: 1.2rem
    }

.mh-modal-title {
    font-family: "Space Mono", monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    color: #00e676
    }

.mh-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
    }

.mh-roi-input-group {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center
    }

.mh-roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: #000;
    outline: none;
    margin: 1.5rem 0;
    grid-column: 1/-1;
    grid-row: 2
    }

.mh-roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #00e676;
    border: 2px solid #000;
    cursor: pointer
    }

.mh-roi-value-display {
    font-family: "Thunder", sans-serif;
    font-size: 2.2rem;
    color: #000;
    line-height: 1;
    grid-column: 2;
    grid-row: 1;
    text-align: right
    }

.mh-roi-card {
    border: 1px solid #000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px
    }

.mh-roi-card.bad {
    background: rgba(0, 0, 0, 0.03);
    border-style: dashed;
    color: #666
    }

.mh-roi-card.good {
    background: #fff;
    color: #000;
    border-width: 2px
    }

.mh-roi-card.loss {
    background: #f33;
    color: #fff;
    border-color: #000;
    box-shadow: 10px 10px 0 #000
    }

.mh-roi-card-title {
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 1rem
    }

.mh-roi-stat {
    font-family: "Thunder", sans-serif;
    font-size: 3rem;
    line-height: 0.8;
    margin-bottom: 0.5rem
    }

.mh-roi-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0.02)
    }

.mh-roi-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8
    }

@media (max-width: 768px) {
    .mh-roi-grid {
        grid-template-columns: 1fr
        }
    .mh-roi-wrapper {
        padding: 0
        }
    }

.mh-h-btn {
    background-color: #f33;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-size: 1.125rem;
    border-radius: 2px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
    text-decoration: none;
    line-height: 1
    }

.mh-h-btn:hover {
    background-color: #d00;
    transform: translatey(-2px)
    }

.mh-h-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif
    }

.mh-h-modal.open {
    display: flex;
    animation: mhHFadeIn 0.3s ease
    }

.mh-h-content {
    background: #1a1a1a;
    color: #fff;
    width: 100%;
    max-width: 700px;
    border: 1px solid #333;
    border-radius: 2px;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8)
    }

.mh-h-header {
    background: #000;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center
    }

.mh-h-title {
    font-family: "Thunder", sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1
    }

.mh-h-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.2s
    }

.mh-h-close:hover {
    color: #f33
    }

.mh-h-body {
    padding: 2rem;
    overflow-y: auto
    }

.mh-h-input-group {
    margin-bottom: 2rem
    }

.mh-h-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    font-family: "Space Mono", monospace;
    padding: 0.5rem 0;
    outline: none;
    margin-bottom: 1rem
    }

.mh-h-input::placeholder {
    color: #555
    }

.mh-h-check-wrap {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #ccc;
    align-items: center;
    margin-bottom: 1.5rem
    }

.mh-h-checkbox {
    accent-color: #f33;
    width: 16px;
    height: 16px;
    cursor: pointer
    }

.mh-h-result-box {
    background: #111;
    border: 1px solid #333;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    max-height: 300px;
    overflow-y: auto;
    display: none
    }

.mh-tag-row {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline
    }

.mh-tag-badge {
    font-weight: 700;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    margin-right: 10px;
    min-width: 35px;
    text-align: center;
    display: inline-block
    }

.h-h1 {
    margin-left: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 15px
    }

.h-h1 .mh-tag-badge {
    background: #f33;
    color: #fff
    }

.h-h2 {
    margin-left: 20px;
    color: #ddd
    }

.h-h2 .mh-tag-badge {
    background: #fff;
    color: #000
    }

.h-h3 {
    margin-left: 40px;
    color: #aaa;
    font-size: 0.85rem
    }

.h-h3 .mh-tag-badge {
    background: #333;
    color: #fff;
    border: 1px solid #555
    }

.h-h4, .h-h5, .h-h6 {
    margin-left: 60px;
    color: #777;
    font-size: 0.8rem
    }

.h-h4 .mh-tag-badge {
    background: transparent;
    border: 1px solid #333;
    color: #777
    }

.mh-h-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-left: 3px solid #00e676
    }

.mh-h-info h4 {
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #00e676
    }

.mh-h-info ul {
    padding-left: 1rem;
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5
    }

.mh-h-info li {
    margin-bottom: 0.5rem
    }

@keyframes mhHFadeIn {
    from {
        opacity: 0;
        } to {
        opacity: 1;
        }
    }

.mh-slot-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 400px
    }

.mh-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem
    }

.mh-thunder-title {
    font-family: "Thunder", sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 0.9;
    margin: 0;
    letter-spacing: 0.02em
    }

.mh-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 51, 51, 0.15);
    color: #f33;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 51, 51, 0.3);
    font-family: system-ui, sans-serif;
    margin-top: 5px;
    white-space: nowrap
    }

.mh-pulse {
    width: 8px;
    height: 8px;
    background-color: #f33;
    border-radius: 50%;
    animation: pulse-red 2s infinite
    }

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
        } 70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 51, 51, 0);
        } 100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
        }
    }

.mh-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: system-ui, sans-serif
    }

.mh-check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    align-items: center
    }

.mh-check-icon {
    color: #d1d1cf
    }

.mh-emerg-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 2px;
    transition: transform 0.2s;
    margin-top: 1.5rem;
    cursor: pointer;
    font-family: system-ui, sans-serif
    }

.mh-emerg-btn:hover {
    transform: scale(1.02)
    }

.mh-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-family: system-ui, sans-serif
    }

.mh-booking-modal.open {
    display: flex;
    animation: mhFadeIn 0.3s ease
    }

.mh-booking-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    color: #000
    }

.mh-cal-header {
    background: #000;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center
    }

.mh-cal-nav {
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
    width: 40px
    }

.mh-cal-nav:hover {
    opacity: 0.7
    }

.mh-cal-month-title {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase
    }

.mh-cal-body {
    padding: 1.5rem
    }

.mh-cal-head {
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    padding-bottom: 5px
    }

.mh-cal-day:hover {
    background: #f0f0f0
    }

.mh-cal-day.active {
    background: #000;
    color: #fff;
    font-weight: bold
    }

.mh-cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    background: transparent
    }

.mh-cal-day.disabled:hover {
    background: transparent
    }

.mh-cal-day.empty {
    cursor: default
    }

.mh-time-container {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
    display: none
    }

.mh-time-container.show {
    display: block;
    animation: mhSlideDown 0.3s ease
    }

.mh-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px
    }

.mh-time-chip {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s
    }

.mh-time-chip:hover {
    background: #eee
    }

.mh-time-chip.selected {
    background: #000;
    color: #fff
    }

.mh-confirm-btn {
    width: 100%;
    background: #f33;
    color: #fff;
    border: none;
    padding: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1.5rem;
    cursor: pointer;
    display: none
    }

@keyframes mhSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }

.mh-wizard-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--mh-wz-bg);
    color: var(--mh-wz-text);
    padding: 0;
    border: 1px solid var(--mh-wz-border);
    box-sizing: border-box;
    font-family: "Space Mono", monospace;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    box-shadow: none
    }

.mh-wizard-wrapper * {
    box-sizing: border-box
    }

.mh-w-progress {
    height: 4px;
    background: transparent;
    border-bottom: 1px solid var(--mh-wz-border);
    width: 100%;
    position: relative
    }

.mh-w-bar {
    height: 100%;
    background: var(--mh-wz-active);
    width: 25%;
    transition: width 0.4s ease;
    box-shadow: none
    }

.mh-w-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: none
    }

.mh-w-headline {
    font-family: "Thunder", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0
    }

.mh-w-sub {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
    color: var(--mh-wz-text);
    font-family: inherit
    }

.mh-w-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
    }

.mh-w-step {
    display: none;
    animation: mhFadeIn 0.4s ease;
    height: 100%
    }

.mh-w-step.active {
    display: flex;
    flex-direction: column
    }

.mh-opt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
    }

.mh-opt-card {
    border: 1px solid var(--mh-wz-border);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--mh-wz-text)
    }

.mh-opt-card:hover {
    background-color: rgba(0, 0, 0, 0.05)
    }

.mh-opt-card.is-wz-selected {
    background-color: var(--mh-wz-active);
    color: var(--mh-wz-active-text);
    border-color: var(--mh-wz-border);
    transform: none
    }

.mh-opt-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center
    }

.mh-opt-title {
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 0.9rem
    }

.mh-opt-desc {
    font-size: 0.9rem;
    opacity: 0.8
    }

.mh-label-cont {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mh-wz-text);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.05em
    }

.mh-input-cont {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--mh-wz-border);
    color: var(--mh-wz-text);
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    font-family: inherit;
    border-radius: 0
    }

textarea.mh-input-cont {
    resize: vertical;
    min-height: 60px;
    border: 1px solid var(--mh-wz-border);
    padding: 10px;
    background: rgba(255, 255, 255, 0.3)
    }

.mh-input-cont:focus {
    background: rgba(255, 255, 255, 0.5)
    }

.mh-input-cont::placeholder {
    color: #666;
    font-style: italic
    }

.mh-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
    }

.mh-tag-opt {
    background: transparent;
    border: 1px solid var(--mh-wz-border);
    color: var(--mh-wz-text);
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.2s
    }

.mh-tag-opt:hover {
    background: rgba(0, 0, 0, 0.05)
    }

.mh-tag-opt.is-wz-selected {
    background: var(--mh-wz-active);
    color: var(--mh-wz-active-text);
    border-color: var(--mh-wz-active);
    font-weight: 600
    }

.mh-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
    }

.mh-package-card {
    border: 1px solid var(--mh-wz-border);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.2s;
    background: transparent;
    height: 100%
    }

.mh-package-card:hover {
    background: rgba(0, 0, 0, 0.05)
    }

.mh-package-card.is-wz-selected {
    background: var(--mh-wz-active);
    color: var(--mh-wz-active-text);
    border-color: var(--mh-wz-active)
    }

.mh-pkg-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem
    }

.mh-package-card.is-wz-selected .mh-pkg-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3)
    }

.mh-pkg-body {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.9
    }

.mh-w-footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
    }

.mh-back-btn {
    background-color: transparent;
    border: 1px solid var(--mh-wz-border);
    color: var(--mh-wz-text);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    transition: opacity 0.2s;
    font-family: inherit
    }

.mh-back-btn:hover {
    background: rgba(0, 0, 0, 0.05)
    }

.mh-wz-next-btn {
    background-color: var(--mh-wz-active);
    color: var(--mh-wz-active-text);
    border: 1px solid var(--mh-wz-active);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    text-transform: uppercase;
    transition: opacity 0.2s;
    font-family: inherit
    }

.mh-wz-next-btn:hover {
    opacity: 0.8;
    transform: none;
    box-shadow: none
    }

.mh-wz-next-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--mh-wz-active);
    color: var(--mh-wz-active-text)
    }

.mh-success-view {
    text-align: center;
    display: none;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center
    }

.mh-terminal {
    background: #fff;
    border: 1px solid var(--mh-wz-border);
    padding: 1.5rem;
    width: 100%;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--mh-wz-text);
    text-align: left;
    margin-top: 2rem;
    min-height: 150px;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1)
    }

@media (max-width: 600px) {
    .mh-w-body {
        padding: 1.5rem
        }
    .mh-tag-group {
        flex-direction: column
        }
    .mh-tag-opt {
        text-align: center
        }
    .mh-package-grid {
        grid-template-columns: 1fr
        }
    .mh-w-footer {
        flex-direction: column-reverse;
        gap: 1rem
        }
    .mh-back-btn, .mh-wz-next-btn {
        width: 100%
        }
    }

@media (max-width: 479px) {
    .mh-wizard-wrapper {
        font-size: 0.9rem
        }
    .mh-w-sub {
        font-size: 0.9rem
        }
    }

.mh-cal-grid-expr {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem
    }

.mh-cal-day-expr {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.2s
    }

.mh-cal-day-expr:hover {
    background: #f0f0f0
    }

.mh-cal-day-expr.active {
    background: #000;
    color: #fff;
    font-weight: bold
    }

.mh-cal-day-expr.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    background: transparent
    }

.mh-cal-day-expr.disabled:hover {
    background: transparent
    }

.mh-cal-day-expr.empty {
    cursor: default
    }

