﻿.map-example-section {
    background: #ffffff;
}

.map-example-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .map-example-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

.map-example-box-content {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

@@media (max-width: 900px) {
    .map-example-box-content {
        width: 100%;
        justify-content: center;
    }
}

.map-example-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 901px) {
    .map-example-text-content {
        text-align: left;
    }
}

@media (max-width: 900px) {
    .map-example-text-content {
        width: 100%;
        text-align: center;
    }
}

.map-example-text-container {
    max-width: 480px;
    padding-right: 5rem;
}

@media (max-width: 900px) {
    .map-example-text-container {
        padding-right: 0;
        margin: 0 auto;
    }
}

.map-example-terminal {
    width: 100%;
    max-width: 36rem;
    height: 500px;
    border-radius: 1rem;
    border: 1px solid #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.map-example-terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #333;
}

.map-example-terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.map-example-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .map-example-terminal-dot.red {
        background: #ff5f56;
    }

    .map-example-terminal-dot.yellow {
        background: #ffbd2e;
    }

    .map-example-terminal-dot.green {
        background: #27ca3f;
    }

.map-example-terminal-title {
    margin-left: 1rem;
    color: #888;
    font-size: 0.875rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.map-example-terminal-content {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #00ff00;
    height: calc(100% - 3rem);
    overflow-y: auto;
}

.map-example-prompt {
    color: #00ff00;
}

.map-example-command {
    color: #ffffff;
}

.map-example-flag {
    color: #ffbd2e;
}

.map-example-string {
    color: #ff6b6b;
}

.map-example-response {
    color: #4ecdc4;
    margin-top: 0.5rem;
}

.map-example-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #00ff00;
    animation: map-example-blink 1s infinite;
}

@keyframes map-example-blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .map-example-terminal {
        max-width: 100%;
        height: 350px;
        margin: 0 auto;
    }

    .map-example-terminal-content {
        font-size: 0.65rem;
    }
}

.map-example-chevron-icon {
    width: 1rem;
    height: 1rem;
}