@keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }

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

        @keyframes bounceIn {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }

            50% {
                transform: scale(1.05);
            }

            70% {
                transform: scale(0.9);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        :root {
            --cream: #F5EAD5;
            --cream-light: #FDF7EE;
            --terracotta: #B84535;
            --gold: #9E7430;
            --gold-light: #B8935F;
            --navy: #1C2D48;
            --text: #1A1208;
            --text-mid: #4A3828;
            --text-muted: #8A7560;
            --border-warm: rgba(158, 116, 48, 0.18);
            --shadow-warm: rgba(184, 69, 53, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        button,
        .close,
        .carousel-nav,
        .stat-item,
        .legend-item {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        body {
            font-family: 'Jost', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #EFE5D0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px 20px;
            animation: fadeIn 0.7s ease-out;
        }

        .header {
            background: #FDF7EE;
            padding: 18px 36px;
            border-radius: 4px;
            box-shadow: 0 2px 20px var(--shadow-warm), 0 1px 0 var(--border-warm);
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            border-bottom: 2px solid var(--terracotta);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(199, 98, 79, 0.15), transparent);
            animation: none;
        }

        .header h1 {
            color: var(--navy);
            font-family: 'Cormorant', Georgia, serif;
            font-size: 22px;
            font-weight: 600;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 15px;
            letter-spacing: 0.03em;
        }

        .logo {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        }

        .main-content {
            background: #FDF7EE;
            padding: 36px;
            border-radius: 4px;
            box-shadow: 0 4px 40px var(--shadow-warm);
            animation: fadeIn 0.8s ease-out 0.2s backwards;
            border: 1px solid var(--border-warm);
        }

        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: #fff;
            padding: 16px 24px;
            border-radius: 2px;
            text-align: center;
            min-width: 120px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.25s ease;
            border: 1px solid var(--border-warm);
            border-top: 3px solid transparent;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .stat-item.disponible {
            border-top-color: #1E8C3E;
        }

        .stat-item.reservado {
            border-top-color: #2548B8;
        }

        .stat-item.vendido {
            border-top-color: #C8200C;
        }

        .stat-item.bloqueado {
            border-top-color: #8A8A8A;
        }

        .stat-number {
            font-family: 'Cormorant', Georgia, serif;
            font-size: 38px;
            font-weight: 600;
            display: block;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .stat-item.disponible .stat-number {
            color: #28a745;
        }

        .stat-item.reservado .stat-number {
            color: #2f56d5;
        }

        .stat-item.vendido .stat-number {
            color: #dc3545;
        }

        .stat-item.bloqueado .stat-number {
            color: #9E9E9E;
        }

        .stat-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 500;
            margin-top: 4px;
            display: block;
        }

        .legend {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px;
            background: #fff;
            border-radius: 2px;
            font-size: 13px;
            font-weight: 500;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
            transition: all 0.2s ease;
            cursor: default;
            border: 1px solid var(--border-warm);
            letter-spacing: 0.03em;
        }

        .legend-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 2px;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
            transition: transform 0.25s ease;
        }

        .legend-item:hover .legend-color {
            transform: scale(1.2) rotate(5deg);
        }

        .map-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid var(--border-warm);
            border-radius: 2px;
            overflow: hidden;
            background: #F8F2E8;
            box-shadow: 0 8px 40px var(--shadow-warm);
            transition: all 0.3s ease;
        }

        .map-container:hover {
            box-shadow: 0 12px 50px rgba(158, 116, 48, 0.2);
        }

        #map-wrapper svg {
            display: block;
            width: 100%;
            height: auto;
        }

        .map-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #666;
            z-index: 10;
        }

        .map-loading .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #C7624F;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        .svg-tooltip {
            position: fixed;
            background: var(--navy);
            color: white;
            padding: 6px 14px;
            border-radius: 2px;
            font-family: 'Jost', sans-serif;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.05em;
            pointer-events: none;
            z-index: 1000;
            display: none;
            white-space: nowrap;
        }

        .svg-tooltip.show {
            display: block;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(28, 45, 72, 0.65);
            backdrop-filter: blur(4px);
            overflow-y: auto;
        }

        .modal-content {
            background: #FDF7EE;
            margin: 24px auto;
            padding: 0;
            border-radius: 4px;
            width: 90%;
            max-width: 550px;
            max-height: 90vh;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-warm);
        }

        .modal-header {
            background: var(--navy);
            color: white;
            padding: 22px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: auto;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
            transform: none;
        }

        .modal-header h2 {
            font-family: 'Cormorant', Georgia, serif;
            font-size: 24px;
            margin: 0;
            font-weight: 600;
            font-style: italic;
            letter-spacing: 0.03em;
            position: relative;
            z-index: 1;
        }

        .close {
            color: rgba(255, 255, 255, 0.7);
            font-size: 28px;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.2s ease;
            line-height: 1;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .close:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.15);
        }

        .modal-body {
            padding: 28px 32px;
            overflow-y: auto;
            flex: 1;
            min-height: 0;
        }

        .lote-image {
            width: 100%;
            height: 180px;
            background: var(--cream);
            border-radius: 2px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 13px;
            font-family: 'Jost', sans-serif;
            letter-spacing: 0.05em;
            border: 1px dashed var(--border-warm);
            transition: all 0.25s ease;
        }

        .lote-image:hover {
            border-color: var(--terracotta);
            background: #EFE5D0;
        }

        .lote-info {
            margin-bottom: 20px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px 0;
            border-bottom: 1px solid var(--border-warm);
            transition: all 0.2s ease;
        }

        .info-row:hover {
            background: rgba(158, 116, 48, 0.04);
            margin: 0 -8px;
            padding: 13px 8px;
            border-radius: 2px;
        }

        .info-label {
            font-weight: 500;
            color: var(--text-muted);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .info-value {
            color: #333;
            font-weight: 500;
        }

        .status-badge {
            display: inline-block;
            padding: 5px 16px;
            border-radius: 2px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .status-disponible {
            background: rgba(30, 140, 62, 0.08);
            color: #1A6E30;
            border: 1px solid rgba(30, 140, 62, 0.25);
        }

        .status-reservado {
            background: rgba(37, 72, 184, 0.08);
            color: #1A3490;
            border: 1px solid rgba(37, 72, 184, 0.25);
        }

        .status-vendido {
            background: rgba(200, 32, 12, 0.08);
            color: #A01808;
            border: 1px solid rgba(200, 32, 12, 0.25);
        }

        .status-bloqueado {
            background: rgba(138, 138, 138, 0.08);
            color: #555;
            border: 1px solid rgba(138, 138, 138, 0.25);
        }

        .footer-info {
            text-align: center;
            margin-top: 20px;
            padding: 16px;
            color: var(--text-muted);
            font-size: 13px;
            letter-spacing: 0.04em;
        }

        @media (max-width: 768px) {

            /* Layout general */
            .container {
                padding: 8px;
            }

            .header {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
                padding: 12px 14px;
                border-radius: 14px;
                margin-bottom: 10px;
            }

            .header h1 {
                font-size: 16px;
                gap: 8px;
            }

            .logo {
                height: 38px;
            }

            .main-content {
                padding: 12px;
                border-radius: 14px;
            }

            /* Stats */
            .stats-bar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                margin-bottom: 12px;
            }

            .stat-item {
                min-width: 0;
                padding: 10px 8px;
                border-radius: 10px;
            }

            .stat-number {
                font-size: 22px;
            }

            .stat-label {
                font-size: 10px;
                letter-spacing: 0;
            }

            /* Leyenda */
            .legend {
                gap: 6px;
                margin-bottom: 12px;
            }

            .legend-item {
                padding: 6px 11px;
                font-size: 12px;
                border-radius: 18px;
                gap: 7px;
            }

            .legend-color {
                width: 14px;
                height: 14px;
                border-radius: 4px;
            }

            /* Botón amenidades */
            .amenidades-btn {
                width: 100%;
                justify-content: center;
                padding: 13px 16px;
                font-size: 14px;
                margin-bottom: 12px;
                min-height: 48px;
                touch-action: manipulation;
            }

            /* Modal: pantalla completa en móvil */
            .modal-content {
                width: 100%;
                max-width: 100%;
                margin: 0;
                border-radius: 0;
                max-height: 100vh;
                height: 100dvh;
            }

            .modal-header {
                padding: 14px 16px;
            }

            .modal-header h2 {
                font-size: 18px;
            }

            .close {
                width: 40px;
                height: 40px;
                font-size: 28px;
                min-height: 40px;
                min-width: 40px;
                touch-action: manipulation;
            }

            .modal-body {
                padding: 14px;
                -webkit-overflow-scrolling: touch;
            }

            .lote-image {
                height: 90px;
                margin-bottom: 12px;
                font-size: 13px;
            }

            /* Info rows */
            .info-row {
                padding: 10px 0;
            }

            .info-row:hover {
                background: none;
                margin: 0;
                padding: 10px 0;
                border-radius: 0;
            }

            .info-label {
                font-size: 13px;
            }

            .info-value {
                font-size: 13px;
            }

            /* Plan de pago */
            .plan-pago-section {
                margin-top: 16px;
                padding-top: 14px;
            }

            .plan-pago-title {
                font-size: 14px;
                margin-bottom: 12px;
            }

            .plan-timeline {
                padding-left: 24px;
            }

            .plan-item {
                padding: 10px 12px;
                margin-bottom: 8px;
                border-radius: 10px;
            }

            .plan-item:hover {
                transform: none;
            }

            .plan-item::before {
                left: -21px;
                width: 13px;
                height: 13px;
            }

            .plan-item-header {
                margin-bottom: 5px;
            }

            .plan-item-title {
                font-size: 12px;
                gap: 5px;
            }

            .plan-item-badge {
                font-size: 9px;
                padding: 2px 6px;
            }

            .plan-item-amount {
                font-size: 16px;
            }

            .plan-item-details {
                font-size: 11px;
            }

            .plan-summary {
                padding: 12px 14px;
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }

            .plan-summary-label {
                font-size: 12px;
            }

            .plan-summary-value {
                font-size: 20px;
            }

            .plan-nota {
                font-size: 11px;
                padding: 10px 12px;
            }

            /* Footer */
            .footer-info {
                margin-top: 12px;
                padding: 10px;
                font-size: 11px;
            }
        }

        /* Teléfonos muy pequeños (360px) */
        @media (max-width: 400px) {
            .header h1 {
                font-size: 14px;
            }

            .logo {
                height: 32px;
            }

            .stats-bar {
                gap: 6px;
            }

            .stat-number {
                font-size: 19px;
            }

            .stat-label {
                font-size: 9px;
            }

            .plan-item-amount {
                font-size: 14px;
            }

            .plan-summary-value {
                font-size: 17px;
            }

            .modal-header h2 {
                font-size: 16px;
            }
        }

        /* Carousel Amenidades */
        .amenidades-btn {
            background: var(--navy);
            color: white;
            border: none;
            padding: 13px 28px;
            border-radius: 2px;
            cursor: pointer;
            font-family: 'Jost', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            box-shadow: 0 4px 16px rgba(28, 45, 72, 0.2);
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 auto 24px;
            border-bottom: 2px solid var(--terracotta);
        }

        .amenidades-btn:hover {
            background: #2A3F60;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(28, 45, 72, 0.3);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel-slide {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            min-width: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        .carousel-item-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(28, 45, 72, 0.85));
            color: white;
            padding: 40px 24px 20px;
            font-family: 'Cormorant', Georgia, serif;
            font-size: 20px;
            font-weight: 600;
            font-style: italic;
            letter-spacing: 0.04em;
            text-align: center;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            color: #C7624F;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav:hover {
            background: #C7624F;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 15px;
        }

        .carousel-nav.next {
            right: 15px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #C7624F;
            transform: scale(1.2);
        }

        .carousel-counter {
            text-align: center;
            margin-top: 15px;
            color: #666;
            font-size: 14px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .carousel-item img {
                height: 220px;
            }

            .carousel-nav {
                width: 38px;
                height: 38px;
                font-size: 18px;
                touch-action: manipulation;
            }

            .carousel-nav.prev {
                left: 8px;
            }

            .carousel-nav.next {
                right: 8px;
            }

            .carousel-dot {
                width: 9px;
                height: 9px;
            }

            .carousel-item-title {
                font-size: 15px;
                padding: 20px 14px 14px;
            }
        }

        /* Plan de Pago */
        .plan-pago-section {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border-warm);
        }

        .plan-pago-title {
            font-family: 'Cormorant', Georgia, serif;
            font-size: 17px;
            font-weight: 600;
            font-style: italic;
            color: var(--navy);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.02em;
        }

        .plan-pago-title::before {
            content: '📋';
            font-size: 22px;
        }

        .plan-timeline {
            position: relative;
            padding-left: 30px;
        }

        .plan-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: linear-gradient(180deg, var(--terracotta) 0%, var(--gold-light) 50%, var(--gold) 100%);
            border-radius: 2px;
        }

        .plan-item {
            position: relative;
            background: #fff;
            border-radius: 2px;
            padding: 14px 16px;
            margin-bottom: 10px;
            border-left: 3px solid;
            border-right: 1px solid var(--border-warm);
            border-top: 1px solid var(--border-warm);
            border-bottom: 1px solid var(--border-warm);
            transition: all 0.2s ease;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        }

        .plan-item:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .plan-item::before {
            content: '';
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .plan-item.separacion {
            border-left-color: #C7624F;
        }

        .plan-item.separacion::before {
            background: #C7624F;
        }

        .plan-item.cuota-inicial {
            border-left-color: #D4896A;
        }

        .plan-item.cuota-inicial::before {
            background: #D4896A;
        }

        .plan-item.financiacion {
            border-left-color: #B8935F;
        }

        .plan-item.financiacion::before {
            background: #B8935F;
        }

        .plan-item.cuota-final {
            border-left-color: #8B6914;
        }

        .plan-item.cuota-final::before {
            background: #8B6914;
        }

        .plan-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .plan-item-title {
            font-weight: 600;
            font-size: 12px;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .plan-item-badge {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .badge-separacion {
            background: rgba(199, 98, 79, 0.15);
            color: #C7624F;
        }

        .badge-inicial {
            background: rgba(212, 137, 106, 0.15);
            color: #D4896A;
        }

        .badge-mensual {
            background: rgba(184, 147, 95, 0.15);
            color: #B8935F;
        }

        .badge-final {
            background: rgba(139, 105, 20, 0.15);
            color: #8B6914;
        }

        .plan-item-amount {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.01em;
        }

        .plan-item-details {
            font-size: 12px;
            color: #666;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 5px;
        }

        .plan-item-percent {
            font-weight: 600;
            color: #888;
        }

        .plan-item-date {
            font-style: italic;
        }

        .plan-summary {
            background: var(--navy);
            color: white;
            border-radius: 2px;
            padding: 16px 20px;
            margin-top: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--terracotta);
        }

        .plan-summary-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.7;
        }

        .plan-summary-value {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .plan-nota {
            background: rgba(245, 234, 213, 0.6);
            border-radius: 2px;
            padding: 12px 16px;
            margin-top: 12px;
            font-size: 12px;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-warm);
            font-style: italic;
            letter-spacing: 0.02em;
        }

        .plan-nota::before {
            content: '🌴';
            font-size: 18px;
        }

        .modal-content.modal-plan {
            max-width: 550px;
            max-height: 90vh;
        }

        .modal-content.modal-plan .modal-body {
            overflow-y: auto;
        }

        .modal-content.modal-plan::-webkit-scrollbar {
            width: 6px;
        }

        .modal-content.modal-plan::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .modal-content.modal-plan::-webkit-scrollbar-thumb {
            background: var(--terracotta);
            border-radius: 2px;
        }