.design-widget-map-modal-google-guide-container {
        background-color: #f8f8f8;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
    }

    .design-widget-map-modal-google-guide-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .design-widget-map-modal-google-guide-title {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .design-widget-map-modal-google-guide-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background-color: #333;
        color: white;
        border-radius: 50%;
        font-size: 12px;
    }

    .design-widget-map-modal-google-steps {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
    }

    .design-widget-map-modal-google-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-width: 100px;
    }

    .design-widget-map-modal-google-step-icon-box {
        background-color: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .design-widget-map-modal-google-step-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .design-widget-map-modal-google-step-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .design-widget-map-modal-google-step-label {
        font-size: 13px;
        text-align: center;
        line-height: 1.4;
        color: #333;
    }

    .design-widget-map-modal-google-step-arrow {
        font-size: 24px;
        color: #999;
        margin: 0 5px;
        flex-shrink: 0;
    }

    .design-widget-map-modal-google-note {
        margin-top: 15px;
        font-size: 12px;
        color: #666;
        line-height: 1.5;
    }

    /* 반응형 */
    @media (max-width: 768px) {
        .design-widget-map-modal-google-steps {
            overflow-x: auto;
            padding-bottom: 15px;
        }

        .design-widget-map-modal-google-step {
            min-width: 90px;
        }

        .design-widget-map-modal-google-step-icon-box {
            width: 70px;
            height: 70px;
            padding: 10px;
        }
    }