.map-instructions-container {
    margin-bottom: 15px;
}

.instructions-toggle {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    user-select: none;
}

.instructions-toggle:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.toggle-header {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #495057;
}

.toggle-icon {
    margin-right: 8px;
    font-size: 16px;
}

.chevron {
    transition: transform 0.2s ease;
    color: #6c757d;
    font-size: 14px;
}

.chevron.expanded {
    transform: rotate(180deg);
}

.instructions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.instructions-content.expanded {
    max-height: 300px;
}

.instructions-inner {
    padding: 20px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-icon {
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.instruction-content {
    flex: 1;
}

.instruction-title {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 6px;
    font-size: 14px;
}

.instruction-methods {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

.method-item {
    margin-bottom: 3px;
}

.method-item:before {
    content: "• ";
    color: #007bff;
    font-weight: bold;
}

.highlight {
    background: #e3f2fd;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 500;
}