:root {
    --mdx-chk-primary: linear-gradient(135deg, #ff4c88 0%, #ff8a63 100%);
    --mdx-chk-secondary: #2D033A;
    --mdx-chk-purple: #8030A5;
    --mdx-chk-gray: #f4f4f7;
    --mdx-chk-radius: 20px;
    --mdx-chk-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Defensive Reset */
.mdx-chk-wrapper,
.mdx-chk-wrapper * {
    box-sizing: border-box !important;
}

/* ====================================
   MULTI-STEP CONTROL - MUST BE FIRST
   ==================================== */
.mdx-chk-view {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mdx-chk-view.active {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    animation: mdxIn 0.35s ease;
}

@keyframes mdxIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mdx-chk-wrapper {
    display: block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    text-align: left !important;
    max-width: 1200px !important;
    margin: 30px auto !important;
    padding: 30px !important;
    background: #ffffff !important;
    border-radius: var(--mdx-chk-radius) !important;
    color: #2D033A !important;
    line-height: 1.6 !important;
    position: relative !important;
    width: 100% !important;
}

/* Headings and inline text - Force theme overrides */
.mdx-chk-wrapper h1,
.mdx-chk-wrapper h2,
.mdx-chk-wrapper h3,
.mdx-chk-wrapper h4,
.mdx-chk-wrapper p,
.mdx-chk-wrapper span,
.mdx-chk-wrapper label,
.mdx-chk-wrapper button,
.mdx-chk-wrapper input,
.mdx-chk-wrapper select {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #2D033A !important;
}

/* ====================================
   PROGRESS BAR
   ==================================== */
.mdx-chk-progress-bar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    margin-bottom: 40px !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.mdx-chk-step-pill {
    flex: 1 1 0 !important;
    padding: 12px !important;
    background: #f0f0f0 !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #888 !important;
    display: block !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.mdx-chk-step-pill.active {
    background: var(--mdx-chk-secondary) !important;
    color: #ffffff !important;
}

/* ====================================
   SEARCH BAR
   ==================================== */
.mdx-chk-search-wrap {
    margin-bottom: 28px !important;
    width: 100% !important;
    display: block !important;
}

.mdx-chk-search-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 50px !important;
    padding: 0 20px !important;
    gap: 12px !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
}

.mdx-chk-search-inner:focus-within {
    border-color: #8030A5 !important;
    box-shadow: 0 0 0 3px rgba(128, 48, 165, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.mdx-chk-search-icon {
    color: #aaa !important;
    flex-shrink: 0 !important;
    pointer-events: none !important;
}

.mdx-chk-search-input {
    flex: 1 1 auto !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 15px !important;
    color: #2D033A !important;
    padding: 16px 0 !important;
    font-family: inherit !important;
    width: 100% !important;
    min-width: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.mdx-chk-search-input::placeholder {
    color: #bbb !important;
}

.mdx-chk-search-clear {
    background: none !important;
    border: none !important;
    color: #bbb !important;
    font-size: 14px !important;
    cursor: pointer !important;
    padding: 4px !important;
    line-height: 1 !important;
    display: none !important;
    flex-shrink: 0 !important;
}

.mdx-chk-search-clear.visible {
    display: block !important;
}

/* ====================================
   MAIN LAYOUT
   ==================================== */
.mdx-chk-main-layout {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.mdx-chk-packages-column {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
}

.mdx-chk-cart-column {
    width: 360px !important;
    min-width: 360px !important;
    max-width: 360px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.mdx-chk-cart-sticky {
    position: sticky !important;
    top: 90px !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* ====================================
   PACKAGE CARDS
   ==================================== */
.mdx-chk-package-card {
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.mdx-chk-hidden-card {
    display: none !important;
}

.mdx-chk-package-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #d5d5d5 !important;
    transform: translateY(-2px) !important;
}

.mdx-chk-package-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #2D033A !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-package-desc {
    font-size: 14px !important;
    color: #666666 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-package-footer {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin-top: 18px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.mdx-chk-package-price {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #8030A5 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

/* ====================================
   ADDONS
   ==================================== */
.mdx-chk-package-addons-section {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid #f0f0f0 !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-addons-label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 0 16px 0 !important;
    color: #a0a0a0 !important;
    font-weight: 800 !important;
    display: block !important;
}

.mdx-chk-addons-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
}

.mdx-chk-addon-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 18px !important;
    background: #fafafa !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    gap: 12px !important;
}

.mdx-chk-addon-row:hover {
    background: #ffffff !important;
    border-color: #e0e0e0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.mdx-chk-addon-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #444 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.mdx-chk-addon-control {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ====================================
   CART SIDEBAR
   ==================================== */
.mdx-chk-cart-box {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: var(--mdx-chk-radius) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #eee !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-cart-head {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 18px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100% !important;
}

.mdx-chk-cart-title {
    margin: 0 !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    color: #2D033A !important;
}

.mdx-chk-copy-btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #f4f4f7 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50px !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #666 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.mdx-chk-copy-btn:hover {
    background: #8030A5 !important;
    border-color: #8030A5 !important;
    color: #fff !important;
}

.mdx-chk-copy-btn.mdx-copied {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.mdx-chk-empty-cart {
    color: #aaa !important;
    font-size: 13px !important;
    text-align: center !important;
    padding: 20px 0 !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-cart-item {
    padding: 15px 0 !important;
    border-bottom: 1px dashed #ddd !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-cart-item-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-weight: 800 !important;
    color: #2D033A !important;
    gap: 8px !important;
    width: 100% !important;
}

.mdx-chk-remove-cart {
    background: transparent !important;
    border: none !important;
    color: #ff4c88 !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.mdx-chk-cart-total {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 25px 0 !important;
    color: #ff4c88 !important;
    width: 100% !important;
    gap: 8px !important;
}

/* ====================================
   BUTTONS
   ==================================== */
.mdx-chk-wrapper .mdx-chk-btn-primary {
    background: #ff8a63 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 18px 35px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    display: inline-block !important;
    text-align: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 25px rgba(255, 76, 136, 0.3) !important;
    line-height: normal !important;
    text-decoration: none !important;
    vertical-align: middle !important;
}

.mdx-chk-wrapper .mdx-chk-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 76, 136, 0.4) !important;
    background: #ff4c88 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.mdx-chk-wrapper .mdx-chk-btn-primary:disabled,
.mdx-chk-wrapper .mdx-chk-btn-primary[disabled] {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.mdx-chk-wrapper .mdx-chk-btn-secondary {
    background: #2D033A !important;
    color: #ffffff !important;
    border: none !important;
    padding: 18px 35px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    display: inline-block !important;
    text-align: center !important;
    line-height: normal !important;
    text-decoration: none !important;
    vertical-align: middle !important;
}

.mdx-chk-wrapper .mdx-chk-btn-secondary:hover {
    background: #8030A5 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.mdx-chk-full-width {
    width: 100% !important;
    display: block !important;
}

.mdx-chk-add-btn {
    width: auto !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
}

/* ====================================
   QTY BOX
   ==================================== */
.mdx-chk-qty-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 50px !important;
    padding: 5px !important;
    border: 1px solid #ddd !important;
    gap: 4px !important;
}

.mdx-chk-qty-btn {
    width: 28px !important;
    height: 28px !important;
    border: none !important;
    background: #f0f0f0 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-weight: 900 !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.mdx-chk-qty-input {
    width: 30px !important;
    border: none !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: #333 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ====================================
   STEP 2 — FORM
   ==================================== */
.mdx-chk-form-wrap {
    max-width: 780px !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-form-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-form-heading {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #2D033A !important;
    margin: 0 0 8px 0 !important;
    display: block !important;
}

.mdx-chk-form-sub {
    font-size: 15px !important;
    color: #777 !important;
    margin: 0 !important;
    display: block !important;
}

.mdx-chk-form-section {
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 18px !important;
    padding: 30px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-section-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #8030A5 !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.mdx-chk-two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
    width: 100% !important;
}

.mdx-chk-two-col:last-child {
    margin-bottom: 0 !important;
}

.mdx-chk-input-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
}

.mdx-chk-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #444 !important;
    display: block !important;
}

.mdx-chk-req {
    color: #ff4c88 !important;
    font-weight: 900 !important;
}

.mdx-chk-input {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #2D033A !important;
    background: #fafafa !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: inherit !important;
    display: block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.mdx-chk-input:focus {
    border-color: #8030A5 !important;
    box-shadow: 0 0 0 3px rgba(128, 48, 165, 0.1) !important;
    background: #ffffff !important;
    outline: none !important;
}

.mdx-chk-textarea {
    min-height: 90px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

.mdx-chk-checkbox-row {
    margin-top: 18px !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    color: #555 !important;
}

.mdx-chk-checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: #8030A5 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

.mdx-chk-form-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 30px !important;
    gap: 16px !important;
    width: 100% !important;
}

/* ====================================
   STEP 3 — FINAL REVIEW
   ==================================== */
.mdx-chk-final-summary {
    max-width: 780px !important;
    margin: 0 auto 24px auto !important;
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 18px !important;
    padding: 30px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-summary-group {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #2D033A !important;
    font-size: 15px !important;
    display: block !important;
    width: 100% !important;
}

.mdx-chk-final-total {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #ff4c88 !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 2px solid #f0f0f0 !important;
    width: 100% !important;
    gap: 8px !important;
}

.mdx-chk-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 24px auto 0 auto !important;
    max-width: 780px !important;
    width: 100% !important;
    gap: 16px !important;
}

/* ====================================
   TITLE
   ==================================== */
.mdx-chk-title {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #2D033A !important;
    margin: 0 0 24px 0 !important;
    display: block !important;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1000px) {
    .mdx-chk-main-layout {
        flex-direction: column !important;
    }

    .mdx-chk-cart-column {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        position: static !important;
    }

    .mdx-chk-cart-sticky {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 600px) {
    .mdx-chk-wrapper {
        padding: 16px !important;
        margin: 16px auto !important;
    }

    .mdx-chk-two-col {
        grid-template-columns: 1fr !important;
    }

    .mdx-chk-form-section {
        padding: 20px !important;
    }

    .mdx-chk-progress-bar {
        gap: 8px !important;
    }

    .mdx-chk-step-pill {
        font-size: 11px !important;
        padding: 10px 6px !important;
    }

    .mdx-chk-package-footer {
        flex-wrap: wrap !important;
    }

    .mdx-chk-btn-primary,
    .mdx-chk-btn-secondary {
        padding: 14px 20px !important;
        font-size: 13px !important;
    }
}

/* ====================================
   LOCATION SELECTION
   ==================================== */
.mdx-chk-location-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
}

.mdx-chk-location-card {
    position: relative !important;
    cursor: pointer !important;
    display: block !important;
}

.mdx-chk-location-card input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.mdx-chk-location-card-content {
    background: #fff !important;
    border: 2px solid #eee !important;
    border-radius: 15px !important;
    padding: 20px !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
}

.mdx-chk-location-card-content strong {
    display: block !important;
    color: #2D033A !important;
    font-size: 15px !important;
}

.mdx-chk-location-card input:checked + .mdx-chk-location-card-content {
    border-color: #ff4c88 !important;
    background: #fff5f8 !important;
    box-shadow: 0 8px 20px rgba(255, 76, 136, 0.1) !important;
}

#mdx-chk-clinic-info {
    animation: mdxFadeIn 0.3s ease-out !important;
}

#mdx-chk-home-address-section {
    animation: mdxFadeIn 0.3s ease-out !important;
}

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

#selected-clinic-map iframe {
    width: 100% !important;
    border: 0 !important;
    height: 250px !important;
    border-radius: 10px !important;
}

.loc-map-container a {
    text-decoration: none !important;
}

/* Premium Clinic Details Box */
.mdx-chk-clinic-details-box {
    margin-top: 30px !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    animation: mdxFadeIn 0.4s ease-out !important;
}

.mdx-chk-clinic-details-inner {
    display: flex !important;
    flex-wrap: wrap !important;
}

.mdx-chk-clinic-main-info {
    flex: 1 1 350px !important;
    padding: 30px !important;
}

.mdx-chk-clinic-main-info h4 {
    margin: 0 0 20px 0 !important;
    font-size: 22px !important;
    color: #2D033A !important;
    font-weight: 800 !important;
    background: var(--mdx-chk-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.mdx-chk-clinic-info-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
}

.mdx-chk-info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.4 !important;
}

.mdx-chk-info-icon {
    font-size: 18px !important;
    min-width: 24px !important;
    text-align: center !important;
}

.mdx-chk-clinic-map-side {
    flex: 1 1 300px !important;
    min-height: 250px !important;
    background: #f4f4f7 !important;
    position: relative !important;
}

.mdx-chk-clinic-map-side iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

.mdx-chk-clinic-map-side a.mdx-chk-btn-primary {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .mdx-chk-clinic-main-info {
        padding: 20px !important;
    }
    .mdx-chk-clinic-map-side {
        height: 200px !important;
        min-height: 200px !important;
    }
}